vote up 0 vote down star

So, "SELECT * FROM table WHERE col LIKE '%'" will return everything. Is there a wildcard for the query "SELECT * FROM table WHERE col = '*'"? - clearly * doesn't work, I just put it there to indicate where I'd like a wildcard. The column I'm selecting from contains an integer between 1 and 12, and I want to be able to select either all records with a particular number, or all records with a wildcard.

Thanks,

flag

6 Answers

vote up 0 vote down check

LIKE is basically the same as =, except LIKE lets you use wildcards.

These two queries will return the same results:

SELECT * FROM table WHERE col LIKE 'xyz';
SELECT * FROM table WHERE col='xyz';

Without a '%' in the LIKE query, it is effectively the same as '='.

If you're doing a selection on an integer column, you should consider using the IN() or BETWEEN operators. It sounds like you have two separate conditions that should be handled in your code however, rather than in the query, as your conditions dictate that you need at least two different kinds of queries.

Edit: I should clarify that LIKE and = are similar only in normal, humdrum string comparison usage. You should check the MySQL Manual for specifics on how it works, as there are situations where it's not the same (such as language sets).

link|flag
Thanks, just what I was looking for. Will handle it in code and change the query to include that particular WHERE clause if and when it's needed. – Dan Apr 29 at 21:46
Does MySQL support BETWEEN? I thought that was just TSQL – d03boy Apr 29 at 22:48
vote up 0 vote down

zombat's answer is great, but I only noticed in his answer that you are selecting integers. He mentioned IN() and BETWEEN(). Here's examples using those syntaxes, as well as some other options you have for an integer field.

SELECT * FROM table WHERE col = 1;
SELECT * FROM table WHERE col BETWEEN 1 AND 12;
SELECT * FROM table WHERE col BETWEEN 6 AND 12;
SELECT * FROM table WHERE col <= 6;
SELECT * FROM table WHERE col < 6;
SELECT * FROM table WHERE col >= 6;
SELECT * FROM table WHERE col > 6;
SELECT * FROM table WHERE col <> 6;
SELECT * FROM table WHERE col IN (1,2,5,6,10);
SELECT * FROM table WHERE col NOT IN (1,2,5,6,10);
link|flag
vote up 0 vote down

Assuming your query is parameter driven a case statement is probably appropriate

select * from mytable where col like case when @myvariable is null then % else myvariable end

Where @myvariable is either null if you dont want a value otherwise it would use the integer value you pass in.

link|flag
vote up 3 vote down

If you want to select everything, why are you attaching the WHERE clause at all? Just leave it off conditionally instead of putting a wildcard into it.

link|flag
1  
I was thinking that, then I thought, no, that's nonsensical, he must just be using the wildcard as an example and really he would anchor text on one or both sides of it. Then I reread the question in detail and no, you're right, he just needs to leave off the WHERE for his application. – chaos Apr 29 at 21:42
Dan, you know that the WHERE part is optional, right? If you leave it off, then you'll select every row. – allyourcode Apr 29 at 21:46
vote up 0 vote down
SELECT * FROM table WHERE col RLIKE '.*'

i.e. regular-expression LIKE.

link|flag
Thanks for reminding me of that nice MySQL operator. RLIKE aka REGEXP is worth knowing: dev.mysql.com/doc/refman/… – artlung Apr 29 at 22:34
vote up 4 vote down

If there was one, we wouldn't need to use LIKE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.