SQL Comments on Create Table on SQL Server 2008

后端 未结 7 1608
广开言路
广开言路 2020-11-29 07:37

I need to create some pretty big tables in SQL Server 2008, while I do have SQL Server Management Studio, I would like to comment the tables and the columns when I create th

7条回答
  •  佛祖请我去吃肉
    2020-11-29 07:59

    use this sql command

    Create table TABLE NAME (ATTRIBUTE NAME (ATTRIBUTE SIZE)) // both create and table are Keywords

提交回复
热议问题