那B表里面就留下姓名,学号,性别中的一个字段参照A表就行了啊,建议用学号,比如叫xuehao:
创新互联建站专业为企业提供五常网站建设、五常做网站、五常网站设计、五常网站制作等企业网站建设、网页设计与制作、五常企业网站模板建站服务,十载五常做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
create table b(xuehao int(11),……其它字段……,foreign key(xuehao) references a(xuehao))
left
jion
left
out
jion
---左外连接
显示出左边表的全部数据和左边和右边相同的数据
select
table_3.a,table_3.b,table_6.a,table_6.c
from
table_3
left
outer
join
table_6
on
table_3.a=table_6.a
----右外连接
显示出右边表的全部数据和左边和右边相同的数据
select
table_3.a,table_3.b,table_6.a,table_6.c
from
table_3
right
outer
join
table_6
on
table_3.a=table_6.a
---全外连接
显示出所有的数据
select
table_3.a,table_3.b,table_6.a,table_6.c
from
table_3
full
outer
join
table_6
on
table_3.a=table_6.a
create table course1 as
select * from course
不知道 mysql支持不支持这种写法
可以的, 下面是一个例子.
CREATE TABLE DEPT (
id INT PRIMARY KEY,
name varchar(10),
pid INT
) ENGINE=InnoDB ;
ALTER TABLE DEPT
ADD CONSTRAINT DEPT_cons
FOREIGN KEY (pid)
REFERENCES DEPT(id);
下面是插入数据的结果.
mysql INSERT INTO DEPT VALUES(1, '总公司', NULL);
Query OK, 1 row affected (0.04 sec)
mysql INSERT INTO DEPT VALUES(2, '分公司', 1);
Query OK, 1 row affected (0.11 sec)
mysql INSERT INTO DEPT VALUES(3, '办事处', 2);
Query OK, 1 row affected (0.08 sec)
mysql
mysql INSERT INTO DEPT VALUES(4, '非法数据', 5);
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`test`.`dept`,
CONSTRAINT `DEPT_cons` FOREIGN KEY (`pid`) REFERENCES `dept` (`id`))
mysql
1、使用 create table 语句可完成对表的创建, create table 的创建形式:
create table 表名称(列声明);
以创建 people 表为例, 表中将存放 学号(id)、姓名(name)、性别(sex)、年龄(age) 这些内容:
create table people(
id int unsigned not null auto_increment primary key,
name char(8) not null,
sex char(4) not null,
age tinyint unsigned not null
);
其中,auto_increment就可以使Int类型的id字段每次自增1。
2、向表中插入数据使用insert 语句。
insert 语句可以用来将一行或多行数据插到数据库表中, 使用的一般形式如下:
insert [into] 表名 [(列名1, 列名2, 列名3, ...)] values (值1, 值2, 值3, ...);
其中 [] 内的内容是可选的, 例如, 要给上步中创建的people 表插入一条记录, 执行语句:
insert into people(name,sex,age) values( "张三", "男", 21 );
3、想要查询是否插入成功,可以通过select 查询语句。形式如下:
select * from people;
扩展资料:
当mysql大批量插入数据的时候使用insert into就会变的非常慢, mysql提高insert into 插入速度的方法有三种:
1、第一种插入提速方法:
如果数据库中的数据已经很多(几百万条), 那么可以 加大mysql配置中的 bulk_insert_buffer_size,这个参数默认为8M
举例:bulk_insert_buffer_size=100M;
2、第二种mysql插入提速方法:
改写所有 insert into 语句为 insert delayed into
这个insert delayed不同之处在于:立即返回结果,后台进行处理插入。
3、第三个方法: 一次插入多条数据:
insert中插入多条数据,举例:
insert into table values('11','11'),('22','22'),('33','33')...;