Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张桌子
1 |name1|40 1 |name2|45 2 |name3|30 2 |name4|39
结果我想要这样
1 |名称1|40 | 2 |名称3|30 1 |名称2|45 | 2 |名称4|39
大约有 5k 行。
谢谢。
您可以获得表格的完整产品:
select table.col1,table.col2,table.col3,table2.col1,table2.col2,table2.col3 from table, table2 where table.col1='test' and table2.col2='test1'
结果可能有两个表中的重复记录。但是由于您没有任何可能对您来说不是问题的主键。