Since everyone is bored on Friday, here is one that someone may find useful (lifted from Red Gate's SQL Stumpers e-book).
Take this sample data:
How would you limit your select to only the rows containing 5%?
Enjoy!
Alex
Ignorance of certain subjects is a great part of wisdom
Take this sample data:
Code:
declare @t table (col varchar(100))
insert @t
select 'this column shows 125% of something'
union all select 'this column shows 55% of something'
union all select 'this column shows 5% of something'
union all select '550% is a lot'
union all select '375%'
union all select '5% is shown in this column'
union all select '1035%'
union all select 'what about 505%'
union all select '5%'
union all select 'ten percent looks like 10%'
union all select 'Why would you care to see 5%'
union all select 'I guess it is better than 1%'
How would you limit your select to only the rows containing 5%?
Enjoy!
Alex
Ignorance of certain subjects is a great part of wisdom