Search
 
SCRIPT & CODE EXAMPLE
 

SQL

create table employees oracle

create table EMPLOYEES (  
  empno             number,  
  name              varchar2(50) not null,  
  job               varchar2(50),  
  manager           number,  
  hiredate          date,  
  salary            number(7,2),  
  commission        number(7,2),  
  deptno           number,  
  constraint pk_employees primary key (empno),  
  constraint fk_employees_deptno foreign key (deptno) 
      references DEPARTMENTS (deptno)  
);
Comment

PREVIOUS NEXT
Code Example
Sql :: if else in postgresql 
Sql :: mysql command not working in linux 
Sql :: sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) unable to open database file 
Sql :: inner join update 
Sql :: remove user and their privileges postgres 
Sql :: create database sql 
Sql :: sql select where more than one record exists 
Sql :: sql pagination 
Sql :: postgresql size of database 
Sql :: remove unique key from a table 
Sql :: mysql full outer join 
Sql :: default constraint in ms sql 
Sql :: mysql event last execution 
Sql :: mysql change timestamp on update 
Sql :: sql change a colum to unique 
Sql :: 1396(hy00) mysql error 
Sql :: myswql show full processlist 
Sql :: What is dialect for Postgres 
Sql :: DATEDIFF minute postgres 
Sql :: how to inner join 4 tables in sql 
Sql :: sum sqlalchemy 
Sql :: adding generated time in row mysql workbench 
Sql :: sqlalchemy postgres timestamp with timezone 
Sql :: spring boot working with sql database connection 
Sql :: sql reverse order of results 
Sql :: how to get date in sql 
Sql :: AND OR NOT operators sql 
Sql :: mysql select distinct date from timestamp 
Sql :: 11:04:35 PM [mysql] Error: MySQL shutdown unexpectedly. 
Sql :: q operator in oracle 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =