Search
 
SCRIPT & CODE EXAMPLE
 

SQL

create new table plsql

CREATE TABLE customers
( customer_id number(10) NOT NULL,
  customer_name varchar2(50) NOT NULL,
  city varchar2(50)
);
Comment

create new table plsql

CREATE TABLE table_name
( 
  column1 datatype [ NULL | NOT NULL ],
  column2 datatype [ NULL | NOT NULL ],
  ...
  column_n datatype [ NULL | NOT NULL ]
);
Comment

PREVIOUS NEXT
Code Example
Sql :: open postgress in terminal mac 
Sql :: sql auto update dupdated_at 
Sql :: mysql select last 15 minutes 
Sql :: truncate table mysql 
Sql :: oracle time 24h 
Sql :: how to ckeck that email is present in databse in mysqli 
Sql :: no data found oracle 
Sql :: oracle last character of string 
Sql :: how to check when a stored procedure was last modified in sql server 
Sql :: update column name and datatype in sql 
Sql :: oracle sql first day of month 
Sql :: grant lock tables privilege mysql 
Sql :: sql server alter column 
Sql :: convert epoch to date in sql server 
Sql :: how to get current date in mysql 
Sql :: copy column data to another column sql with creating slugs 
Sql :: mysql greater thatn a week ago 
Sql :: mysql format date 
Sql :: sql server reset auto increment 
Sql :: mssql remove column 
Sql :: sql find column name like 
Sql :: oracle sql drop table 
Sql :: insert all or first in oracle sql 
Sql :: create procedure with encryption 
Sql :: how to check nls format in oracle 
Sql :: mysqldump csv 
Sql :: first letter capital in mysql query 
Sql :: mysql show tables in database 
Sql :: access the postgres psql 
Sql :: oracle cannot access v$session 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =