Difference between revisions of "SQL - Create table"

From GUILLARD WIKI
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="sql"> create table THOMAS ( CODE varchar2(20), INFORMATION varchar2(500) ); </syntaxhighlight>")
 
(No difference)

Latest revision as of 09:05, 18 May 2018

create table THOMAS (
   CODE varchar2(20),
   INFORMATION varchar2(500)
);