摘要: 1、内连接 将两张表中相同意义字段连接起来,返回结果是两个表中都存在的信息: select * from TableA,TableB where TableA.字段c=TableB.字段c; select * from TableA inner join TableB on TableA.字段c=T 阅读全文
posted @ 2017-04-14 00:20 这一站幸福0519 阅读(212) 评论(0) 推荐(0) 编辑