Stutents表的結構如下﹕ID BOY GRILA001 YES NULLA002 NULL YES.........要求用select into 從Stutents 抽取數據 到表 StuStu字段為ID,SEX 其中 SEX 依據Stutents表中的字段BOY﹐GRIL 如果BOY為 NULL﹐SEX 就為GRIL﹐如果GRIL為 NULL﹐SEX 就為BOY
select id,case when not(boy is null) then 'boy' else case when not(gril is null) then 'gril' else '未知' end end as sex into Stu from stutents