摘要: --1、 查询Student表中的所有记录的Sname、Ssex和Class列。select Sname,Ssex,class from Student--2、 查询教师所有的单位即不重复的Depart列。select distinct depart from teacher--3、 查询Stude... 阅读全文
posted @ 2016-01-18 15:55 秦萧不再 阅读(2052) 评论(0) 推荐(0) 编辑
摘要: 高级查询: 一:多表连接 1.select Info.Code,Info.Name,Nation.Name from Info,Nation where Info.Nation = Nation.Code select * from Info,Nation 2.join连接 select * fro... 阅读全文
posted @ 2016-01-18 15:54 秦萧不再 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 普通查询: 一:查询所有数据 select * from Info 查所有数据 select Code,Name from Info 查特定列 二:根据条件查 select * from Info where Code='p001' 一个条件查询 select * from Info where ... 阅读全文
posted @ 2016-01-18 15:53 秦萧不再 阅读(227) 评论(0) 推荐(0) 编辑
摘要: T-SQL语句:创建表:create table Name(Code varchar(50))主键:primary key自增长列:auto_increment外键关系:references非空:not null删除表:drop table family创建数据库:create database m... 阅读全文
posted @ 2016-01-18 15:52 秦萧不再 阅读(185) 评论(0) 推荐(0) 编辑
摘要: LAMP: Linx 阿帕奇 Mysql PHPWAMP:一键搭建php开发环境工具修改数据库密码:use mysql;UPDATE mysql.user SET password=password('123') WHERE user='root';数据库的基本操作:数据库--表结构--字段(列)每... 阅读全文
posted @ 2016-01-18 15:50 秦萧不再 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 一、设有一数据库,包括四个表:学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)。四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示。用SQL语句创建四个表并完成相关题目。表1-1数据库的表结构表(一)Stu... 阅读全文
posted @ 2016-01-18 15:23 秦萧不再 阅读(2395) 评论(0) 推荐(0) 编辑