main
create database test
create table qry_oclk
(
branch_no varchar(6) not null,
oclk_code varchar(2) not null,
oclk_name varchar( not null,
oclk_pass varchar(6) not null,
primary key (branch_no,oclk_code) constraint pk_qry_oclk
|________^
|
| A grammatical error has been found on line 9, character 12.
| The construct is not understandable in its context.
| See error number -4373.
|________^
|
| A grammatical error has been found on line 9, character 12.
| The construct is not understandable in its context.
| See error number -4373.
|__________________^
|
| A grammatical error has been found on line 9, character 23.
| The construct is not understandable in its context.
| See error number -4373.
);
end main作者: 寒鈴 時間: 2003-02-17 21:32 標題: 用4GL設(shè)計數(shù)據(jù)庫的問題? 為什么會出現(xiàn)這種錯誤? 正確的語法應(yīng)該如何書寫?