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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by devprogrammer

  1. devprogrammer

    Good Book on MS SQL Server 2000 administration

    Any of the SQL Server DBA Survival Guides by Microsoft would be a start. The latest I have is for 7.0 and 6.5, so I assume they have one for 2000. Hope that helps, Denise D.
  2. devprogrammer

    combining sql statements?

    I would start by using a case statement when doing the select. For example: Select SleeveCode = case when tshirtsize like 'Short Sleeve%' then 'S' when tshirtsize like 'Long Sleeve%' then 'L' end, tshirtSize = case when tshirtsize like '%S' then '1' when tshirtsize like '%M' then '2'...

Part and Inventory Search

Back
Top