A、B、C 列名INSERT INTO 表名 ('A','B','C') VALUES ('你好','这样添加','就OK了')
SQL Server:Select col1,col2,col3,col4 Into NewTable From OldTable Oracle:Create Table NewTable as Select col1,col2,col3,col4 From OldTable
用For循环插入数据表