i have two table
and table two data is
and i want to show just like this
我必须从另外两个表中创建一个表,其中一个表包含列word
和serial
,另一个表包含列meaning
和serial
。
现在我要做的就是把这个结果(数据)
进入table3
(我已经拥有的一个表,与table1中的列相同,并且(table2)试了很多但是请不要帮助我
我希望这不会让人感到困惑。
答案 0 :(得分:1)
select
a.serial,
b.word,
a.word as meaning
from tbl1 a
join tbl2 b on a.serial = b.serial
答案 1 :(得分:1)
这是您要查找的SQL查询,有关详细信息的详细信息已在下面的链接中提供
INSERT INTO table3 (serial,word,meaning)
SELECT t1.serial,t2.word,t1.word
FROM table1 as t1
JOIN table2 as t2 ON t1.serial=t2.serial
答案 2 :(得分:0)
尝试
select * from eng join other on eng.serial=other.serial
答案 3 :(得分:0)
您可以尝试以下内容:
INSERT INTO table (col_a, col_b) SELECT col_a, col_b FROM table_b JOIN table_c ON [argument]
我现在不在我的电脑里,所以我不能制作任何详细的代码......