http://qs321.pair.com?node_id=1191623

pragov has asked for the wisdom of the Perl Monks concerning the following question:

Hi,.

I need to pass a value of a field like, abc;234.

I used my code as if ($ftype) { $Where = $Where . "AND G.FEAT_TYPE = '$ftype' "; } but it passes just abc and not abc;234

I also tried if ($ftype) { $Where = $Where . "AND G.FEAT_TYPE IN ('$ftype') "; }, but get the same result.

How do I do this?

Thanks,

Pragov