当前位置: 代码迷 >> 其他数据库 >> sqlite3 查詢column的型態?解决方案
  详细解决方案

sqlite3 查詢column的型態?解决方案

热度:4682   发布时间:2013-02-26 00:00:00.0
sqlite3 查詢column的型態?
sqlite3 是否能查詢某一個column的型態呢
thx

------解决方案--------------------------------------------------------
sqlite 中你可以直接用命令 .schema ?TABLE?

sqlite> .schema t1
CREATE TABLE t1 (
a int,
b varchar(10)
);
sqlite>
  相关解决方案