关于SQLite的注释
SQLite中的注释符号为“--”,可以在建表时标注注释。
例如:
CREATE TABLE User
-- A table comment
(
id INTEGER, -- A field comment
flags INTEGER -- Another field comment
);
然后在相关数据表的对象信息中的DLL里以查看注释:
![]()
![]()
SQLite中的注释符号为“--”,可以在建表时标注注释。
例如:
CREATE TABLE User
-- A table comment
(
id INTEGER, -- A field comment
flags INTEGER -- Another field comment
);
然后在相关数据表的对象信息中的DLL里以查看注释:
![]()
![]()