in reply to Re: Re: Conversion to T-SQL
in thread Conversion to T-SQL

What is the meaning of ...WHERE" . $_ . " >= 0") then? Aren't comparing the column name there too?

Arjen

Replies are listed 'Best First'.
Re: Re: Re: Re: Conversion to T-SQL
by Anonymous Monk on Jan 26, 2004 at 21:56 UTC
    "...WHERE " . $_ . " >= 0" results in ...WHERE columname >= 0, while your code would produce ...WHERE 'columname' >= 0

    Can you see the difference?