sqlserver datatype for single alphanumeric character

Solutions on MaxInterview for sqlserver datatype for single alphanumeric character by the best coders in the world

showing results for - "sqlserver datatype for single alphanumeric character"
Camilla
07 Jul 2017
1As per the standard, there’s:
2char(n) where every string is n characters long, no shorter and no longer.
3varchar(n) where every string is at most n characters long, but my be shorter.