nchar data type : nchar Data Type « Data Type « SQL Server / T-SQL






nchar data type


1> IF EXISTS(SELECT name FROM sys.tables
2>     WHERE name = 'T')
3>     DROP TABLE T
4> GO
1>
2> CREATE TABLE T (
3>     c1 int,
4>     c2 nchar(24),
5>     c3 nchar(4000)
6> )
7> GO
1>
2> drop table t
3> GO
1>
           
       








Related examples in the same category