我尝试通过 sqflite 运行查询并得到以下错误:
DatabaseException(no such column: true (code 1): , while compiling: select (case true WHEN true THEN 111 END) xkey1 from tb_path
以下是 SQL 步骤:
create table tb_path(name text, age text);
db.rawQuery('select (case true WHEN true THEN 111 END) xkey1 from tb_path');
并且出现了上面的错误。
如果我尝试通过 SqlLite Expert Personal(Windows 版 SQLITE 工具)运行 SQL,则可以正常工作。