如何用sql语句创建表是写注释
发布网友
发布时间:2022-04-08 21:38
我来回答
共4个回答
热心网友
时间:2022-04-08 23:07
是的,只能一个个加,可以使用语句
comment on table table_name is 'table_mark';
热心网友
时间:2022-04-09 00:25
注释存在sysproperties表里
表注释对应的smallid为0的记录,
字段注释对应的是smallid大于0的记录,
id是对象id与sysobjects表中的id相对应
热心网友
时间:2022-04-09 02:00
create table DJ_NSR
(
ID NUMBER(19) not null
)
comment on table id
is '字段注释';
比如这样 id的注释就是‘字段注释’
热心网友
时间:2022-04-09 03:51
注释 写进表的字段?
楼主的意图?