我已经table1
并且table2
需要从他们每个人那里获取数据。
表格1
"id" "name" "description"
"1" "Windows" "Microsoft Windows 8"
表2
"id" "type" "name" "description"
"1" "22" "Microsoft Windows" "Microsoft Windows 8 Home"
"2" "2" "Not an Edit" "Not an Edit"
我做这样的选择
select table1.name, table1.description,
table2.name, table2.description
from table1,table2
where table2.id=table1.id and table2.`type`=22;
一次选择大约 500 多行时,使用内部联接会更快或更有效吗?
我见过大多数使用内部连接来执行此操作的示例。