Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle insert into

INSERT INTO table
(column1, column2, ... column_n )
VALUES
(expression1, expression2, ... expression_n );
Comment

oracle insert into where

INSERT INTO my_table SELECT * FROM source_table;
INSERT INTO my_table (a, b, c) SELECT a, b, c FROM source_table;
INSERT INTO my_table (a, b, c) SELECT a, b, c FROM source_table s
	WHERE s.my_col >= 10;
Comment

oracle insert into

INSERT INTO table
(column1, column2, ... column_n )
SELECT expression1, expression2, ... expression_n
FROM source_table
[WHERE conditions];
Comment

Insert query in oracle

insert all 
  into t1 values(131309,'HP','20-FEB-04',2000000,1235)
  into t1 values(131310,'HT','20-APR-14',120020,1234)
  select * from dual
Comment

PREVIOUS NEXT
Code Example
Sql :: sql server select furst day of current year 
Sql :: mysql find duplicates 
Sql :: how to delete a table in mysql 
Sql :: SQL SERVER ORDER BY DATE NULL LAST 
Sql :: list table columns sql 
Sql :: mysql get date from datetime 
Sql :: sql query to find percentage of null values in a table 
Sql :: Query to remove duplicate rows from a table 
Sql :: get sum sqlite android 
Sql :: sql server pivot rows to columns 
Sql :: rename column mysql 
Sql :: how to run a function in sql 
Sql :: nvl in oracle 
Sql :: mysql regex exact match 
Sql :: postgresql linux password 
Sql :: ms sql mac 
Sql :: exec procedure oracle 
Sql :: python mysql create table if not exists 
Sql :: get triggers by query 
Sql :: MySQL import data from large CSV file 
Sql :: checking data type in sql server 
Sql :: osm2pgsql mac 
Sql :: sub query postgres 
Sql :: how to define a save method in ruby for sql databases 
Sql :: mysql best tutorial for beginners 
Sql :: update set table column to null 
Sql :: case insensitive sql 
Sql :: sql where not like in list 
Sql :: commit transaction sql 
Sql :: how to convert external table to managed table in hive 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =