Difference between revisions of "Yurttas/PL/DBL/mysql/F/01/00/PC/Product-cre.sql"
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="sql" line start="1" enclose="div">→REM REM REM Product-cre.sql REM REM: \. set-db.sql CREATE TABLE Product(maker VARCHAR(6) NOT NULL, ...") |
(No difference)
|
Latest revision as of 16:25, 3 November 2013
1/*
2REM
3REM
4REM Product-cre.sql
5REM
6REM
7*/
8
9\. set-db.sql
10
11CREATE TABLE Product(maker VARCHAR(6) NOT NULL,
12 model VARCHAR(6) NOT NULL,
13 type VARCHAR(8) NOT NULL,
14 PRIMARY KEY(model));