2008年8月23日 星期六

SQL-無法解析 equal to 動作的定序衝突

select * from acc_info_tbl  where account_id in (select account_id from hot1003b)

出現如下訊息:

SQL-無法解析 equal to 動作的定序衝突 <=== 完全看不懂的一句話

解決方法如下:

select * from acc_info_tbl  where account_id in (select account_id collate chinese_taiwan_stroke_ci_as  from hot1003b)

 

COLLATE Chinese_Taiwan_Stroke_CI_AI
就是將兩個資料庫做同樣的字典設定
CI就是不分大小寫
AI就是不分腔調

沒有留言: