How to copy a table in another table with datas?
Answers were Sorted based on User's Feedback
Answer / guest
If new table is not yet created,
create table new_table as select * from old_table;
if new table is already created,
insert into new table select * from old_table
provided the structure of the new table is same as old
table.
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / guest
If new table is not yet created,
create table new_table as select * from old_table;
if new table is already created,
insert into new table select * from old_table
provided the structure of the new table is same as old
table.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / kavitha nedigunta
create table new_table as select * from old_table;
EG:- create table emp1 as select * from emp;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / meher
copy from user_name/password@schema_name insert
target_table_name using select * from source_table_name;
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / monty
if you have a table employee you can create duplicate
record using into statement
select *into backup_employee from employee
the above statement create new table backup_employee with
same data of employee
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mohan
create table emp_dup as select * from emp:
if we have already structure means:
Insert into emp_dup(select * from emp);
| Is This Answer Correct ? | 2 Yes | 0 No |
In Oracle 10g :
---------------
Create New Table in another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
CREATE s11 using select * from major_list;
Insert data's into another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
INSERT s11 using select * from major_list;
Append data's into another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
APPEND s11 using select * from major_list;
Replace data's into another table with same data's:
---------------------------------------------------
copy from coeot1a2/coeot1a2@coeau to scott/tiger@coeau
REPLACE s11 using select * from major_list;
| Is This Answer Correct ? | 0 Yes | 0 No |
---With date from existing table to new table.
SQL> create table new_table_name as select * from old_table_name where 1=1;
---without data
SQL> create table new_table_name as select * from old_table_name where 1=2;
Thanks,
| Is This Answer Correct ? | 0 Yes | 0 No |
Is ms sql is free?
what is subquery? : Sql dba
four procedures is are there should i write their in a package
How do I run sql?
i have table T!. A B C D NULL 1 2 3 4 NULL 5 6 7 8 NULL 9 10 11 12 NULL. I WANT COUNT OF NULL VALUES IN TABLE. WRITE A QUERY.
If i insert record in table A and these record should update in table B by using Trigger.How to achieve this.
What are schema-level triggers?
HOW TO ADD PRIMARY KEY TO TABLE BY PL/SQL PROGRAM
What is having clause in sql?
Can we create index on primary key?
How will you a activate/deactivate integrity constraints?
what is the forward decleration in packages?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)