从具有不同列的另一个 table 插入到 table

insert into a table from another table with different columns

我有两个表A和B,所以B⊂A(这意味着B的每一列都在A中,但是A的列多于B中没有的列)

Table A 是空的,我想将 B 的值插入到 A 中。我该怎么做?

例如: 答:

乙:

我认为这应该可行

INSERT INTO A (load, Roll, dest)
SELECT load, Roll, dest
FROM B