I would like to do something like this:
create table NEW_TABLE (select * from OLD_TABLE where id=3582)
And have a new table created from the resulting columns of that select statement.
I bet its possible in mySQL, but how to do it in Oracle?
Try this:
CREATE TABLE new_table AS select * from OLD_TABLE where id=3582
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With