数据库查询操作
简单查询
SELECT * FROM student -- 查询全部学生 -- 查询指定字段 SELECT `studentno`,`studentname` FROM student -- 别名 SELECT `studentno` AS 学号,`studentname`AS 学生姓名 FROM student
函数
-- 函数 SELECT CONCAT('姓名: ',studentname) AS newname FROM student -- 查询成绩 SELECT * FROM result -- 查询有哪些同学参加考试 SELECT `studentno` FROM result SELECT DISTINCT `studentno` FROM result -- 去重 -- 去除select中重复的数据,重复的数据只显示一条 SELECT VERSION() -- 成绩加一分 SELECT `studentno`,`studentresult`+1 FROM result
where查询
-- where 检索数据中符合条件的值 SELECT `studentno`,`studentresult`FROM result WHERE studentresult >= 95 AND studentresult<=100
模糊查询 in
-- 模糊查询 -- 查询姓刘的同学 % 任意字符 _ 一个字符 SELECT `studentno`,`studentname` FROM student WHERE studentname LIKE '赵%' SELECT `studentno`,`studentname` FROM student WHERE studentname LIKE '赵_' -- in 具体的一个或者多个值 SELECT `studentno`,`studentname` FROM student WHERE studentno IN (1000,1001)
over
标签:studentname,--,数据库,查询,studentno,day63,student,SELECT From: https://www.cnblogs.com/GUGUZIZI/p/17069042.html