i*****t 发帖数: 220 | 1 I am using Oracle. See the statement:
create table MESSAGE
(
TYPE int(20),
COLOR varchar2(20),
CONTENT varchar2(400)
);
Oracle always says: the line of 'TYPE ...' misses the right parenthesis. What
is wrong? Thanks. | s****d 发帖数: 13 | 2 create table MESSAGE
(
TYPE int, | a****c 发帖数: 25 | 3 TYPE is a key work in Oracle. Try sth else MSG_TYPE instead of TYPE as your
column name.
What
【在 i*****t 的大作中提到】 : I am using Oracle. See the statement: : create table MESSAGE : ( : TYPE int(20), : COLOR varchar2(20), : CONTENT varchar2(400) : ); : Oracle always says: the line of 'TYPE ...' misses the right parenthesis. What : is wrong? Thanks.
|
|