问题:
我想做这个操作
从pragma table_info(my_awesome_table)中选择名称
编译指针是sqlite特定于sql的扩展,它有一个
special syntax:
sqlite> create table my_table (a int,b TEXT); sqlite> .headers ON sqlite> .mode columns sqlite> pragma table_info(my_table); cid name type notnull dflt_value pk ---------- ---------- ---------- ---------- ---------- ---------- 0 a int 0 0 1 b TEXT 0 0
您不能指定列,您不能在子查询中使用编译指示.