Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw a query run in a log file on an application. and it contained a query like:

SELECT ID FROM CUST_ATTR49 WHERE 1=0

what is the use of such a query that is bound to return nothing?

share|improve this question
it most likely is a hack to work around some ORM "feature". – tereško Feb 4 '12 at 11:46
Where did you find such query? – Kamil Klimek Feb 4 '12 at 11:46
Duplicate: stackoverflow.com/questions/517107/… – Krumelur Feb 4 '12 at 11:48
as far as ORM is concerned, this one does not use any thing like TOPLink or Hibernate. It has its own implementation is what I have heard – MozenRath Feb 4 '12 at 11:48

6 Answers

up vote 14 down vote accepted

A query like this can be used to ping the database. The clause:

WHERE 1=0

Ensures that non data is sent back, so no CPU charge, no Network traffic or other resource consumption.

A query like that can test for:

  • server availability
  • CUST_ATTR49 table existence
  • ID column existence
  • Keeping a connection alive
share|improve this answer
wow! perfect! Thanks – MozenRath Feb 4 '12 at 11:51
* keeping a connection alive – his Feb 4 '12 at 11:58
Sure! Edited. Thanks. – Andrea Colleoni Feb 4 '12 at 12:03

A usecase I can think of: you have a filter form where you don't want to have any search results. If you specify some filter, they get added to the where clause.

Or it's usually used if you have to create a sql query by hand. E.g. you don't want to check whether the where clause is empty or not..and you can just add stuff like this:

where := "WHERE 0=1"

if X then where := where + " OR ... "
if Y then where := where + " OR ... "

(if you connect the clauses with OR you need 0=1, if you have AND you have 1=1)

share|improve this answer
how exactly? can you provide an example? – MozenRath Feb 4 '12 at 11:49
ohhk. I get it, for 1=1 you use AND and for 1=0 you use OR. Nice! Thanks – MozenRath Feb 4 '12 at 11:52

Thats an attempt for Blind SQL Injection attack. Some hacker had tried to do that on your application via URL or through Textboxes.

Try to make your application secure as soon you can. If it's already secure. It doesn't matter.

share|improve this answer

This may be also used to extract the table schema from a table without extracting any data inside that table. As Andrea Colleoni said those will be the other benefits of using this.

share|improve this answer

It seems like, that someone is trying to hack your database. It looks like someone tried mysql injection. You can read more about it here: Mysql Injection

share|improve this answer

quoted from Greg

If the list of conditions is not known at compile time and is instead built at run time, you don't have to worry about whether you have one or more than one condition. You can generate them all like:

and

and concatenate them all together. With the 1=1 at the start, the initial and has something to associate with.

I've never seen this used for any kind of injection protection, as you say it doesn't seem like it would help much. I have seen it used as an implementation convenience. The SQL query engine will end up ignoring the 1=1 so it should have no performance impact.

Why would someone use WHERE 1=1 AND <conditions> in a SQL clause?

share|improve this answer
I read that but dint think that OR would be used in case of 1=0 until I got answers for this question – MozenRath Feb 4 '12 at 12:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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