在SQL的select语句中,用于实现选择运算的短语是

2024-12-14 03:14:34
推荐回答(5个)
回答1:

例如:select * from talbe_1 where sal>1000;

回答2:

select (case when 1=1 then 1 else 2) col from table

回答3:

select *
from table
where 条件

回答4:

select case

回答5:

select,where,exist,in,like......