-
select * from users where username = 'aaa' or (800<salary and salary<2000);查看全部
-
select * from users where username = 'aaa' or salary >2000;查看全部
-
select username salary from users where id = 3 ;查看全部
-
在users 表中 查询 id =3 的 用户名和工资查看全部
-
在users 表中 查询 用户名为aaa的工资 select salary from users where username = 'aaa';查看全部
-
查询 users 表中 工资 大于 800 不等于 1800.5的名字 sselect username from users where salary >800 and salary <>1800.5;查看全部
-
查询 users 表中 工资大于800的名字 select username from users where salary >800;查看全部
-
select id as 数字 username as用户名 salary+200 as 工资 0 from users; 给工资+200 在查询中显示 并不是改变表查看全部
-
select distinct username as 用户名 from users;去除关键字查看全部
-
select id as 编号 username as 用户名 salary as 工资 from users; 给字段设置别称查看全部
-
清除字段格式查看全部
-
字符长 4个9查看全部
-
设置格式查看全部
-
设置格式 查询显示查看全部
-
基本查询查看全部
举报
0/150
提交
取消