Return to Snippet

Revision: 44501
at April 12, 2011 23:32 by kashif21


Initial Code
with respect to first column:

SELECT * FROM Issue where AssignedEmployeeID=45 AND (LocalTesterID=43 OR StagingTesterID=43 OR FinalTesterID=43)


with out the respect of first column:

SELECT * FROM Issue where AssignedEmployeeID=45 AND LocalTesterID=43 OR StagingTesterID=43 OR FinalTesterID=43

Initial URL


Initial Description


Initial Title
selecting single value in multiple columns (with respect to first column and without the respect of the first Column)

Initial Tags


Initial Language
SQL