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

SQL Teaser Percent

Status
Not open for further replies.

AlexCuse

Programmer
Apr 13, 2006
5,416
US
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:

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
 
ps you want to exclude things like 1035%

Ignorance of certain subjects is a great part of wisdom
 
didn't see your 2nd request, you want only these 4 rows back right?



union all select 'this column shows 5% of something'
union all select '5% is shown in this column'
union all select '5%'
union all select 'Why would you care to see 5%'

yes?

then this, might have fat-fingerred a space

select * from @t where col LIKE '% 5[%]%'
OR col LIKE '5[%]%'

Denis The SQL Menace
--------------------
SQL Server Code,Tips and Tricks, Performance Tuning
Google Interview Questions





 
Like this...

SELECT * FROM @t
where col like '5[%]'

I remember this from a question that George answered not to long ago.

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
Here you go, legitimate answer:
select col from @t where charindex(' 5%', col) > 0 or charindex('5%', col) = 1

[monkey][snake] <.
 
Here's another one.

Select *
From @t
Where (' ' + col) like '%[^0-9][5][%]%'

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
oops.
SELECT * FROM @t
where CHARINDEX (' 5%',col) > 0

Is that better.

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
One last change. I need to pay more attention to the data.

SELECT * FROM @t
where (CHARINDEX (' 5%',col) > 0)
or (col = '5%')

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
I need to pay more attention to the data.

Somewhere, Paul's boss just started having a panic attack.

George is closest to what I had (and knowing George, probably better ;-) ):

select col from @t
where patindex('%[^0-9]5[%]%', ' ' + col)>0


Ignorance of certain subjects is a great part of wisdom
 
I think you are still missing one thing Paul.

Your code still won't get this one.

'5% is shown in this column'


[monkey][snake] <.
 
>>Somewhere, Paul's boss just started having a panic attack.

That's why I don't let my boss anywhere near the db. [wink]


- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
SELECT *
FROM @t
WHERE col LIKE '% 5[%]%'
OR col LIKE '5[%]%'
 
I will keep my finger off the red flag button this time Lamprey13 ;-).

In all seriousness, these things are here for everyone to have fun, and maybe even learn a little bit. No need to apologize!



Ignorance of certain subjects is a great part of wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top