1

これはクエリの構文エラーであると確信しています。私は何を間違っていますか?

describe codes_to_jobs;                            
1037.586: [GC 487958K->420946K(4185792K), 0.0115291 secs]
OK
job_id  string  
text    string  
....

select job_id from codes_to_jobs limit 5;            
820.769: [GC 358434K->293732K(4185792K), 0.0122444 secs]
OK
'8144439'
'8173679'
'8223174'
'8388313'
'8420908'

select * from codes_to_jobs where job_id = '8144439';

結果がありません。

ありがとう!

4

1 に答える 1

1

データに '' があるため、出力が得られません。

1つの解決策は、パターンに一致することです

select * from codes_to_jobs where job_id like '%8144439%'

2 番目の解決策は、一重引用符をエスケープすることです。

select * from codes_to_jobs where job_id = '\'8144439\''
于 2013-06-10T06:27:44.283 に答える