sqlserver datatype for single alphanumeric character

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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.