请求大家个问题,内联接和外联接有什么区别?
create table a(xh char(1),xm varchar(8))
create table b(xh char(1),nl int)
insert into a(xh,xm) values('1','王刚')
insert into a(xh,xm) values('2','刘老根')
insert into a(xh,xm) values('3','老王')
insert into a(xh,xm) values('7','小刘')
insert into b(xh,nl)values('1',26)
insert into b(xh,nl)values('2',25)
insert into b(xh,nl)values('3',26)
insert into b(xh,nl)values('4',26)
insert into b(xh,nl)values('5',26)
表示这样子的,想试验一下,大家说完了,能写个例子吗?