怎么用关键子做字段呢?
   drop table sharper.hlist;

解决方案 »

  1.   

    insert into sharper.hlist
    (Number, Name, Publisher, Developer, Release Date, Gread)
    values( 1, 'WarZone2100', 'Eidos', 'publid', to_date('1999-10-01','yyyy-mm-dd'), 7.6 ) ;
      

  2.   

    删除表的问题解决了,但插入数据的问题依旧。二楼的Number, Name, Publisher, Developer, Release Date, Gread这里面有哪个是关键字吗??小弟还有个问题,Create Table中的的语法如下:
    CREATE TABLE [[database].owner.]table_name
    ( column_name datatype [not null | null] IDENTITY[send, increment][constraint]
    [ON file group]上面的IDENTITY[send, increment][constraint][ON file group]是什么意思。
      

  3.   

    你的是oracle还是sqlserver??
    number是关键字
      

  4.   

    小弟用的是oracle 9i
    还有个问题,如何显示表空间里的所有表
      

  5.   

    删除表的问题解决了,但插入数据的问题依旧。二楼的Number, Name, Publisher, Developer, Release Date, Gread这里面有哪个是关键字吗??
    -------------NUMBER是关键字小弟还有个问题,Create Table中的的语法如下:
    CREATE TABLE [[database].owner.]table_name
    ( column_name datatype [not null | null] IDENTITY[send, increment][constraint]
    [ON file group]上面的IDENTITY[send, increment][constraint][ON file group]是什么意思。
    ----------是SQL SERVER的问题。
    -----------IDENTITY[send, increment] 自增字段
    ------------[constraint]约束
    ----------[ON file group]是什么意思 存储在哪个FILE GROUP 上
      

  6.   

    select * from user_tables where tablespace_name = 'XXX'or maybeselect * from user_segments where tablespace_name = 'XXX'
    and segment_type = 'TABLE'
      

  7.   

    名称                                      是否为空? 类型
    ----------------------------------------- -------- ------------
    SerialNumber                              NOT NULL NUMBER(1)
    GameName                                  NOT NULL VARCHAR2(50)
    Publisher                                          VARCHAR2(50)
    Developer                                          VARCHAR2(50)
    ReleaseDate                                        DATE语句:
    SQL> insert into sharper.base
      2  (GameName,GameName,Publisher,Developer,ReleaseDate)
      3  (1,'WarZone2100','Eidos Interactive','Pumpkin Studios',to_date('1999-10-01','yyyy-mm-dd'),7.6) 
    ;
    (1,'WarZone2100','Eidos Interactive','Pumpkin Studios',to_date('1999-10-01','yyyy-mm-dd'),7.6)
     *
    ERROR 位于第 3 行:
    ORA-00928: 缺少 SELECT 关键字错误依旧,大侠救命哈。
      

  8.   

    values keyword missingU must read some books first !Don't jump before learning walk !
      

  9.   

    insert into sharper.base(GameName,GameName,Publisher,Developer,ReleaseDate) 
    values(1,'WarZone2100','Eidos Interactive','Pumpkin Studios',to_date('1999-10-01','yyyy-mm-dd'),7.6);faint......
      

  10.   

    缺少关键字呀INSERT 的格式
    INSERT INTO TABLE_NAME   VALUES (:VAL1,.....
     
        insert into sharper.base
        (GameName,GameName,Publisher,Developer,ReleaseDate)   VALUES
        (1,'WarZone2100','Eidos Interactive','Pumpkin Studios',to_date('1999-10-01','yyyy-mm-dd'),7.6)
      

  11.   

    insert into sharper.hlist (Number, "Name", Publisher, Developer, Release "Date", Gread)values( 1, 'WarZone2100', 'Eidos', 'publid', to_date('01/10/1999','mm,dd,yyyy'), 7.6 ) ;