When making a MySQL query with no WHERE constraints, most people use WHERE 1 in the query. However, omitting WHERE 1 does not influence the query. Is there a difference between the two? Is one considered to be the best practice?
|
I don't think it's a matter of best practice, but people sometimes use it to make building dynamic queries a bit easier.
Without the |
|||||||||
|
|
It's not necessary. 99.9% of the time it just means the query was dynamically constructed and putting in So it's just laziness basically. |
|||||
|
|
It's one less corner case for automated code generators and other SQL statement manipulators. By starting the filtering section with Otherwise you tend to end up with code like:
which is not as clean as:
It should make very little difference to any decent DBMS since the execution engine should strip out those sort of clauses before the query is executed. Whether it's best practice or not depends on whether you'd rather have "cleaner" code in your query generators, or whether you'd rather have the company DBAs trying to track you down and beat you to death for using such silly clauses :-) Of course, if you're using MySQL, you may be the DBA so that may not be a problem. |
||||
|
|
