Create Table Insert Select SQL20230213
Create Table Insert Select SQL20230213
(col1 numeric(10,2),
col2 varchar(50),
primary key(col1));
1 val1
2 val2
desc tbl1;
desc supplier;
create table supplier
(SupplierID number(10),
SupplierName Varchar(50),
Township varchar(50),
City varchar(20),
Region varchar(20),
PostalCode number(10),
Primary key (SupplierID));
select * from supplier;
delete from supplier where supplierid=1001;
INSERT ALL
INTO Product
VALUES ('P0011','Hush Puppies Shoe 221', 90000)
INTO Product
VALUES ('P0012','Kappa Shoe 112', 86000)
INTO Product
VALUES ('P0013','Puma Shoe 110', 105000)
select * from dual;