本文介绍了如何从同一个数据库中的两个不同表输入一个表的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友我的数据库中有三个表,Table1有10列,Table2有1列,I创建包含11列的Table3,如何在Table3中插入Table1值前10列,表2中的表2值最后专栏。





Hi, Friends I have Three Tables in my database, Table1 has 10 columns, Table2 Has 1 column, I Create the Table3 that contains 11 columns, How to insert Table1 values in Table3 first 10 columns and table 2 value in table3 last column.


insert into Table3(col1,col2,....,col11) VALUES SELECT * FROM TABLE1 UNION SELECT * FROM TABLE2





我知道这段代码不是正确,请帮我纠正它



I know this code is not correct, help me to correct it

推荐答案


这篇关于如何从同一个数据库中的两个不同表输入一个表的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 07:34
查看更多