SQL 查询语句: 模糊查询 All In One
SQL 查询语句,用户名字是以'X'开头的所有用户
LIKE
select * from users where user.name like 'X%'
LEFT
select * from users where left(user.name, 1)='X'
demos
SQL 查询语句,名字不是以'M'开头
写出一个SQL 查询语句,计算每个雇员的奖金。
如果一个雇员的id是奇数并且他的名字不是以'M'开头,那么他的奖金是他工资的100%,否则奖金为0。
https://leetcode.cn/problems/calculate-special-bonus/?plan=sql&plan_progress=sjohlim
https://leetcode.cn/study-plan/sql/?progress=sjohlim
refs
SQL 通配符
https://www.runoob.com/sql/sql-wildcards.html
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载
标签:语句,xgqfrms,查询,plan,sql,SQL From: https://www.cnblogs.com/xgqfrms/p/16770788.html