SQL CASE 语句
我的数据库表 PE 和 PER 有两个字段(BIT 数据类型),我需要编写一条 sql case 语句来执行以下任务。
当 PER=0 时则打印“不需要” 当 PER=1 时,检查 PE=0,然后打印“未完成” 当 PE=1 时,打印“已完成”
以下是我尝试过的查询,但该查询不起作用
CASE pc.PER WHEN '0' THEN 'Not Required'
WHEN '1' THEN (CASE pc.PE WHEN '0' THEN 'Not Completed'
WHEN '1' THEN 'Completed') end as ab
There are two fields (BIT data type) in my database table PE and PER i need to write a sql case statement to perform the following task.
when PER=0 then print 'Not Required'
when PER=1 then check if PE=0 then print 'Not Completed' when PE=1 print 'Completed'
following is the query i have tried and which is not working
CASE pc.PER WHEN '0' THEN 'Not Required'
WHEN '1' THEN (CASE pc.PE WHEN '0' THEN 'Not Completed'
WHEN '1' THEN 'Completed') end as ab
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你错过了一个结局。
You are missing an end.
尝试使用以下语句:
try the following statement instead:
我认为将其写为更容易:
或者,您必须在查询中的
... WHEN '1' THEN 'Completed'
之后添加END
:I think it might be easier to write it as:
Alternatively you would have to add
END
after... WHEN '1' THEN 'Completed'
in your query: