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.
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'...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.