-
decode函数与case when 语句一个功能 简便 select username , decode(username,'aaa','计算机部门''bbb','市场部门','其他')as'部门' from users;查看全部
-
decode函数的使用查看全部
-
select username , case when salary < 800 then '工资低' when salary >5000 then '高' end as '工资水平' from users; case when 语句的第二中用法例子查看全部
-
case when 语句的第二种用法 select username, case when username = 'aaa' then '计算机部门' when username = 'bbb' then '市场部门' else '其他部门' end as 部门 from users;查看全部
-
select username,case username when 'aaa' then '计算机部门' when 'bbb' then '市场部门' else '其他部门' end as 部门 from users;查看全部
-
case .. when 语句 语法查看全部
-
向users 表中 增加 用户名aaa 工资是800的信息。 insert into users values (4,'aaa',800);查看全部
-
查询id 按降序排列的用户信息 select * from users order by id descn ,salary asc;查看全部
-
查询用户名等于aaa 或者 用户名等于bbb 的用户信息 select * from users where username in ('aaa','bbb'); 查询用户名不等于aaa 或者 用户名等于bbb 的用户信息 select * from users where username mot in ('aaa','bbb');查看全部
-
查询工资在800到2000之间的用户信息 select * from users where salary between 800 and 2000; 查询的结果是一个闭合区间 查询工资不是在800到2000之间的用户信息 select * from users where salary not between 800 and 2000;查看全部
-
查询用户名中含有a的用户信息 select * from users where username like '%a%';查看全部
-
select * from users where username like 'a%'; 在users表中查询用户名为a开头的用户信息查看全部
-
通配符的使用查看全部
-
not 逻辑运算符用法 select * from users not(username<>'aaa');在users表中查询用户名不等于aaa的用户信息查看全部
-
逻辑运算符优先级查看全部
举报
0/150
提交
取消