现导入数据库 表 tab1,然后再建一个同结构表  tab2,用如下 SQl:INSERT INTO tab2 
   (a, b, c, d)
SELECT a,b,c,case when tab1.d=1 then '可以'else case tab1.d='2' then
'不可以' else case tab1.d='0' then '未知' end as d
FROM tab1