Hi,
When I have the following SQL statement:
SELECT * INTO backup_table FROM orig_table;
The statement executes, but I don't see "backup_table" created anywhere, and when I refer to "backup_table" in another separate SQL query, I get an error message saying the table doesn't exist. Does anyone know how this can be resolved? Thank you in advance for your help.
When I have the following SQL statement:
SELECT * INTO backup_table FROM orig_table;
The statement executes, but I don't see "backup_table" created anywhere, and when I refer to "backup_table" in another separate SQL query, I get an error message saying the table doesn't exist. Does anyone know how this can be resolved? Thank you in advance for your help.