首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

mysql表连接的学问待补充

2012-09-24 
mysql表连接的知识待补充等值连接又叫内链接 inner join 只返回两个表中连接字段相等的行select * from A

mysql表连接的知识待补充
等值连接又叫内链接 inner join 只返回两个表中连接字段相等的行
select * from A inner join B on A.id = B.id; #做法1
select * from A,B where A.id = B.id; #做法2

热点排行