1.索引添加索引,设计界面,在任何一列前右键--索引/键--点击进入添加某一列为索引2.视图视图就是我们查询出来的虚拟表创建视图:创建视图:create view 视图名asSQL查询语句 --分组,排序,in 等都不能写视图的用法: select * from 视图名3.SQL编程A、定义变量:d... Read More
SQL查询练习题目设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示。用SQL语句创建四个表并完成相关题目。表1-1数据库的表结构... Read More
高级查询--连接查询 select * from 表1,表2 ————形成笛卡尔积select * from 表1,表2 where 表1.主键=表2.外键 ————主外键位置可以互换--join on 内连接格式: select * from 表1 join 外键 on 表1.主键 = 表2.外键... Read More
select * from studentselect * from scoreselect * from teacherselect * from courseselect * from car--数学函数select degree ,sqrt(degree) from score --开平方,平... Read More