• In regard to operators, just quickly concerning negating operations, ie... someColumn <> 'string' ,

    don't forget that rows with a null in that column will not be returned. I just use

    where somecolumn != 'string' or someColumn is null. if that what's intended.

    ----------------------------------------------------