摘要:
小练习(内外连接、主键设置) 1、创建学生表 create table student( id int not null auto_increment, name varchar(20) not null, sex char(1), submission_date date, primary key 阅读全文
摘要:
查询操作 1、别名查询 select id 序号,name 名字 from test_1209ryc; 2、条件查询(between) select * from test_1209ryc where id between 2 and 5; 3、条件查询(in) select * from test 阅读全文