Answers for "datatype for alphanumeric in sql"

SQL
-1

sqlserver datatype for single alphanumeric character

As per the standard, there’s:
char(n) where every string is n characters long, no shorter and no longer.
varchar(n) where every string is at most n characters long, but my be shorter.
Posted by: Guest on September-16-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language