我试图在我的表格'集合'中转换0和1?到' 0'没有'和' 1'是的'是'是在SQL Server中,我研究了各个地方,但我还没有找到具体的答案。任何帮助将不胜感激
答案 0 :(得分:3)
select
case
when Yourfield = 0 then 'no'
when Yourfield = 1 then 'yes'
end as GotIt
from
collection
答案 1 :(得分:0)
创建另一个字段并使用新值更新它。
ALTER TABLE table1 ADD newfield VARCHAR(10);
UPDATE TABLE1 SET newfield = if(oldfield = 1, 'YES','NO');
ALTER TABLE table1 drop field oldfield;
alter table table1 rename newfield to oldfield;