Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dbtech
  • Content: Threads
  • Order by date
  1. dbtech

    TSQL-Multiple condition on single column

    Sample query attached set nocount on CREATE TABLE #temp (Location int null) Insert into #temp values(1) Insert into #temp values(2) Insert into #temp values(3) Insert into #temp values(4) --select * from #temp select * from #temp where location=1 and location=2 drop table #temp In the...

Part and Inventory Search

Back
Top