SQL - Java:列名无效:列名无效

时间:2014-01-24 17:07:16

标签: java sql

protected String getSQLCarFinder()
{
    StringBuffer sb = new StringBuffer();
    sb.append("select distinct T1.ASSET_AMT c1, T1.NAME c2, T1.ALIAS_NAME c3 ");
    sb.append("from {0}.CARFINDERDB T1 ");
    sb.append("where T1.ASSET_AMT=? ");
    sb.append(" and T1.OU_TYPE_CD <> ''NOC'' ");
    sb.append(" and " + IRDataSource.getLengthFunctionName() + "(T1.ASSET_AMT) <= " + CARFINDER_CODE_MAX_LENGTH);
    return sb.toString();
    }

错误:

[2014-01-24 10:42:20,238] Thread-66 ERROR util.XNAMEDbLogProcessor - XNAMEDbLogProcessor :: logItem : ExceptionAn unexpected token "NOC" was found following "nvalid column name '".  Expected tokens may include:  ",".. SQLCODE=-104, SQLSTATE=42601, DRIVER=4.7.112
[2014-01-24 10:42:20,238] Thread-66 ERROR util.XNAMEDbLogProcessor - XNAMEDbLogProcessor :: logItem : An error occurred while logging data to the database: An unexpected token "NOC" was found following "nvalid column name '".  Expected tokens may include:  ",".. SQLCODE=-104, SQLSTATE=42601, DRIVER=4.7.112: Data={[2014-01-24-10.42.17.318000] [server_common_name] [common_name] [] [99999] [0] [] [] [] [E] [INTRANET] [2014-01-24] [10:42:20] [CDLT] [Account : com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'NOC'.] }
[2014-01-24 10:42:22,458] RMI TCP Connection(98501)-172.28.24.27 DEBUG dataaccess.NewCarViewDataSource -  NewCarViewDataSource:: connect : IR connect siebel without user  and password
[2014-01-24 10:42:22,477] RMI TCP Connection(98501)-172.28.24.27 DEBUG dataaccess.IRDataSource -  IRDataSource:: getLengthFunctionName : Lenght function name:LEN
[2014-01-24 10:42:22,478] RMI TCP Connection(98501)-172.28.24.27 ERROR server.AssociateCodeListRetrieveCommand - AssociateCodeListRetrieveCommand ::executeINTRANETCall : Exception Invalid column name 'NOC'.
[2014-01-24 10:42:22,481] RMI TCP Connection(98501)-172.28.24.27 DEBUG server.REPDatabaseCommand -  REPDatabaseCommand :: executeCall : Time to execute CDLT transaction = 23
[2014-01-24 10:42:23,144] Thread-65 DEBUG util.XNAMEAlertLogProcessor - XNAMEAlertLogProcessor :: logItem : Error alert log processor: ALERT-001 -s "Error occurred in AssociateCodeListInfo" Date:     Time:   Server name: server_common_name Client name: common_name


User id: **strong text**

我试过

sb.append(" and T1.OU_TYPE_CD <> /'NOC/' ");
sb.append(" and T1.OU_TYPE_CD <> ''NOC'' ");
sb.append(" and T1.OU_TYPE_CD <> 'NOC' ");

什么都没有用。我在这做错了什么? T1.OU_TYPE_CD是列名,NOC是其中的值。我想检查T1.OU_TYPE_CD值是NOT NOC

3 个答案:

答案 0 :(得分:0)

您不需要NOC附近的双引号:

sb.append(" and T1.OU_TYPE_CD <> 'NOC' ");

外部字符串的分隔符是双引号,因此无需转义单引号。

答案 1 :(得分:0)

列名称不需要''

sb.append(" and T1.OU_TYPE_CD <> NOC ");

修改

编译器将NOC解释为列名。如果NOCstring值,我认为您的问题将是一个逃避问题。

尝试:

sb.append(" and T1.OU_TYPE_CD <> \'NOC\' ");

或者这个:

sb.append(" and T1.OU_TYPE_CD NOT IN ('NOC') ");

或直接设置aux字符串:

String aux = " and T1.OU_TYPE_CD <> 'NOC' ";
sb.append(aux);

答案 2 :(得分:0)

这应该有效。

sb.append(“和T1.OU_TYPE_CD&lt;&gt;'NOC'”);

您确定收到相同的错误消息吗?