1.创建students表mysql> create table students ( -> id int(10) auto_increment unique primary key, -> name varchar(20) not null, -> sex varchar(4), -> age int(10), -> class varch…
10. 查询Score表中的最高分的学生学号和课程号.(子查询或者排序) select sno,cno from score where degree=(select max(degree) from score) select * from score order by degree desc limit 0,1 12.查询Score表中至少有5名学生选修的并以3开头的课程的平均分数. select avg(degree) from score where cno like'3%' and c…
1.查看表结构语句:DESC 表名 2.查询所有列:select * from 表名 3.查询指定列:select 字段名 form 表名 4.查询指定行:SELECT * from 表名 WHERE 字段名=值 5.模糊查询:SELECT * from 表名 WHERE 字段名 LIKE "%要查询的值%" //%表示一个或多个字符,_表示一个字符 6.在where条件中使用 in:SELECT * from 表名 WHERE 字段名 in…
1.注释语法:--,#2.后缀是.sql的文件是数据库查询文件3.保存查询4.在数据库里面 列有个名字叫字段 行有个名字叫记录5.一条数据即为表的一行 CRUD操作:create 创建(添加)read 读取update 修改delete 删除1.添加数据insert into Info values('p009','张三',1,'n001','2016-8-30 12:9:8') ; 给特定的列添加数据insert into Info (code,name) values('p010','李…