oracle里面没有这个
在ms sql里面大概是表示临时表------------------------
|                      |
|   相逢何必曾相识     |
|                      |
------------------------

解决方案 »

  1.   

    jiezhi(西域浪子) 
    我现在用的就是VB+oracle9.0.2
      

  2.   

    在你的SQL中,可能字段名就是带有#的吧?
      

  3.   

    我想是你的表就这么起的名字,看看表结构
    desc table_name------------------------
    |                      |
    |   相逢何必曾相识     |
    |                      |
    ------------------------
      

  4.   

    oracle里面没有这个
    没见过
      

  5.   

    按照ORACLE的意思,#是用于格式化数字函数时(如:To_Char To_Number 函数),如果觉得小数点左端的数字是必要的,那么通过#来填充。原文如下:
    Number Format Models You can use number format models:   In the TO_CHAR function to translate a value of NUMBER datatype to VARCHAR2 datatype   In the TO_NUMBER function to translate a value of CHAR or VARCHAR2 datatype to NUMBER datatype All number format models cause the number to be rounded to the specified number of significant digits. If a value has more significant digits to the left of the decimal place than are specified in the format, pound signs (#) replace the value. 
      

  6.   

    你sql里面的字段都是String么?
      

  7.   

    create table xxx (KEYC# CHAR(2),KEY#### CHAR(3))这个是可以的,所以只能说KEYC#和KEYF#都是字段名