摘要:
条件查询 SELECT * FROM stu; -- 条件查询 -- 1.查询年龄大于20岁的学员信息 select * from stu where age > 20; -- 2.查询年龄大于等于20岁的学员信息 select * from stu where age >= 20; -- 3.查询 阅读全文
摘要:
create table tb_user( id int , username varchar(20), password varchar(32) ); -- 学生表 create table tb_stu( id int ,-- 编号 name varchar(10),-- 姓名 gender c 阅读全文