我想做这样的事情:
create table NEW_TABLE (select * from OLD_TABLE where id=3582)
并从该 select 语句的结果列创建一个新表。
我打赌它在 mySQL 中是可能的,但是如何在 Oracle 中做到呢?
最佳答案
试试这个:
CREATE TABLE new_table AS select * from OLD_TABLE where id=3582
关于sql - 在 Oracle 中从选择创建表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8594282/