程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> mysql-MySQL數據庫從表1(table1)中導出數據到(table2)中。會有多列。

mysql-MySQL數據庫從表1(table1)中導出數據到(table2)中。會有多列。

編輯:編程綜合問答
MySQL數據庫從表1(table1)中導出數據到(table2)中。會有多列。

table1
字段:id name url
table2:
需要獲取 table1 中的id url
請問怎樣實現?
用sql實現的時候需要注意字段名字和順序嗎?

最佳回答:


字段名稱隨便,但是要對應起來,包括類型。

create table table2
(
id int primary key,
name varchar(20),
)

insert into table2(id,name) select id,name from table1

baidu_28843887
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved