-- 查询一下有哪些同学参加了考试 SELECT * FROM result -- 查询全部学生考试成绩 SELECT studentno FROM result -- 查询哪些同学参加了考试 SELECT DISTINCT studentno FROM result -- 发现重复数据,去重 SELECT VERSION() -- 查询版本 SELECT 100*3-1 AS 计算结果 -- 用来计算 SELECT @@auto_increment_increment -- 查询自增步长
2023-12-20 23:04:27
-- 查询一下有哪些同学参加了考试 SELECT * FROM result -- 查询全部学生考试成绩 SELECT studentno FROM result -- 查询哪些同学参加了考试 SELECT DISTINCT studentno FROM result -- 发现重复数据,去重 SELECT VERSION() -- 查询版本 SELECT 100*3-1 AS 计算结果 -- 用来计算 SELECT @@auto_increment_increment -- 查询自增步长