3
SELECT.....

 (v1.PCG like 'n0%'
or
v1.PCG like 'n1%'
or
v1.PCG like 'n2%'
or
v1.PCG like 'n3%'
or
v1.PCG like 'n4%'
or
v1.PCG like 'n5%'
or v1.PCG='N63Af1')

and v1.PCG not like 'N2D%'
and v1.PCG not like 'N2E%'
and v1.PCG not like 'N2C%'
and v1.PCG not like 'N2F%'
and v1.PCG not like 'N2J%'
and v1.PCG not like 'N2K%'
and v1.PCG not like 'N2U%'
and v1.PCG not like 'N2GC%'
and v1.PCG not like 'N2GD%'
and v1.PCG not like 'N2GH%'
and v1.PCG not like 'N2GJ%'
and v1.PCG not like 'N2GK%'
) as 'Value Of PN Orders',

from........

私は自分のコードを競合しましたが、これを行うためのより効率的な方法を見つけようとしています。見ましたが、別の方法が見つかりません...何か提案はありますか?

4

4 に答える 4

4

Like文字クラスをサポートしています。

where v1.PCG like 'n[12345]%'
于 2013-06-05T13:22:29.937 に答える
0

これは正規表現の仕事のようです

于 2013-06-05T13:18:17.840 に答える