sql与mysql中2个表数据进行匹配_SQL语言中把数据库中两张表数据关联起来的语句...

展开全部

1、创建32313133353236313431303231363533e59b9ee7ad9431333431373864两张测试表,

create table test_cj(name VARCHAR(20), remark varchar2(20));

create table test_kc(name VARCHAR(20), remark varchar2(20));

2、插入测试数据

insert into test_cj values('xh','cj_1');

insert into test_cj values('kcdh','cj_2');

insert into test_cj values('cj','cj_3');

insert into test_kc values('kcdh','kc_1');

insert into test_kc values('kcm','kc_2');

sql与mysql中2个表数据进行匹配_SQL语言中把数据库中两张表数据关联起来的语句..._第1张图片

3、查询两张表的总记录数,select t.*, rowid from test_cj t union all select t.*, rowid from test_kc t,

sql与mysql中2个表数据进行匹配_SQL语言中把数据库中两张表数据关联起来的语句..._第2张图片

4、编写sql,两张表进行关联,select t.name, t.remark, b.remark from test_cj t, test_kc b where t.name=b.name,可以发现关联出kcdh的记录,

sql与mysql中2个表数据进行匹配_SQL语言中把数据库中两张表数据关联起来的语句..._第3张图片

你可能感兴趣的:(sql与mysql中2个表数据进行匹配_SQL语言中把数据库中两张表数据关联起来的语句...)