我在要基于布尔值打印的表中有一个布尔变量。但是会引发运行时错误,例如“ Limit 0,1000”。
create table Test(id integer, title varchar(100), autotrans bool);
insert into Test values(1, "Hello", 1);
select * from Test;
select id,title,(case when autotrans <> 0 then 'yes' else 'no' end) as autotrans
from Test