关于SQLite的注释

SQLite中的注释符号为“--”,可以在建表时标注注释。

例如:

CREATE TABLE User
 -- A table comment
(
 id INTEGER, -- A field comment
 flags INTEGER -- Another field comment
);

然后在相关数据表的对象信息中的DLL里以查看注释:

 

 

 

 
posted @ 2018-05-25 17:08  哟风  Views(7453)  Comments(0)    收藏  举报