Sqlserver
 sql >> Base de données >  >> RDS >> Sqlserver

Comment obtenir la taille d'un champ varchar[n] dans une instruction SQL ?

select column_name, data_type, character_maximum_length    
  from information_schema.columns  
 where table_name = 'myTable'