ORA-00908 missing NULL keywordCause: Either of the following: In a CREATE TABLE or ALTER TABLE statement, NOT was entered to specify that no null values are allowed in that column, but the keyword NULL was omitted. In the IS [NOT] NULL logical operator, the keyword NULL was not found. For example, the following statement generates this message:SELECT * FROM EMP WHERE DEPTNO IS NOT; 
The keyword NULL must follow the keywords IS NOT.Action: Correct the syntax.
--语句丢了null.看看你的SQL语句.

解决方案 »

  1.   

    语句丢了null.看看你的SQL语句.怎么看呢?
      

  2.   

    缺少Null 关键字,这个NULL是数据库里的字段吗?
      

  3.   

    你是不失插入语句错误啊,在查询的语句比insert语句的字段没有对应好啊!!贴出来看看
      

  4.   

    to zwj0712(阿张) 
    数据库在服务器上,应用程序在工作站,原来是正常的,现在换了服务器,我把原来的库重新导入新机子,现在其他模块都正常,就有一个报错。会不会与数据环境有关?