Difference between revisions of "SQL - Create table"
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)
);