Oracle导表语句 |
1,create table vincent_sms as select * from vincent_voice 缔造一个表vincent_sms,其字段类型同vincent_voice 彻底一样,并会把vincent_voice中的记录也复制到vincent_sms表中去 注:select子句还 可以加where 制约条件 =================================================================== 2, insert into vincent_sms select * from vincent_voice 将vincent_voice表中的记录导入vincent_sms 表中 注:select子句还 可以加where 制约条件,假如vincent_sms 和vincent_voice表 构造不一样的话,固然 可以指明字段的 。 留神,这里没有values 要害字 |