×

Loading...

In Database Design Studio, they call such codes as schema. I'm still confused: whether there are two meaning of SCHEMA.

/*
* Target DBMS: 'Ingres'
*/


/*
* Table : eic_level1
* Description :
* id : 12-34567-890 12:Level 890:Sequence Number 34567:Reserved
* name :
* type : Category: 1; Item: 0
* manager :
* email : Manager's E-mail
* manager_notes : Other Information about Manger
* notes :
*/
create table wonme (
id char not null,
name varchar,
type char not null,
manager char not null,
email char not null,
manager_notes char,
notes clob not null,
primary key (id));
Report