Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Inserting data into different tables at once in oracle sql

INSERT INTO table1 t1, table2 t2 
(t1.tid, t1.date, t1.title, t2.tid, t2.date, t2.user, t2.note)
VALUES (1,'01-JAN-15','title',1,'01-JAN-15','john','test note');
Comment

insert into one table from another table in oracle

insert into <table_name> select <fieldlist> from <tables>
Comment

PREVIOUS NEXT
Code Example
Sql :: one to one and one to many relationship 
Sql :: set a value by excuting stored procedure 
Sql :: create directory in sql server 
Sql :: how to login to mysql as normal user in ubuntu 
Sql :: export database with data sql server 
Sql :: postgres meta command to show all rows in table 
Sql :: sql check constraint 
Sql :: pl sql if boolean 
Sql :: docker use mysql 
Sql :: row number sql 
Sql :: psql store procedure-return multiple table values 
Sql :: concatenation in sql 
Sql :: postgres copy table 
Sql :: difference between left outer join and left join in sql 
Sql :: SQL Comments Within Statements 
Sql :: sql searching via key word 
Sql :: oracle no data found error code 
Sql :: parent child hierarchy in sql 
Sql :: sql is null and is not null 
Sql :: sql developer connect to sql server 
Sql :: mysql date comparison with formatting 
Sql :: how to print some string in mysql 
Sql :: sql server download for windows 10 64 bit 
Sql :: sql and operator 
Sql :: primary key with prefix sql 
Sql :: join sql 
Sql :: online sql compiler 
Sql :: sql query interview questions 
Sql :: join vs union 
Sql :: use table postgres 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =