Why is SELECT * bad practice? Wouldn't it mean less code to change if you added a new column you wanted?
I understand that SELECT COUNT(*) is a performance problem on some DBs, but what if you really wanted every column?
|
There are really three major reasons:
But it's not all bad for SELECT *. I use it liberally for these use cases:
|
|||||||||||||||||||
|
|
The asterisk character, "*", in the SELECT statement is shorthand for all the columns in the table(s) involved in the query. PerformanceThe
MaintenanceWhen using
Design
When Should "SELECT *" Be Used?It's acceptable to use Otherwise, explicitly list every column that is to be used in the query - preferably while using a table alias. |
|||
|
|
|
Even if you wanted to select every column now, you might not want to select every column after someone adds one or more new columns. If you write the query with
The chances are that if you actually want to use the new column then you will have to make quite a lot other changes to your code anyway. You're only saving |
|||||||||||||||||
|
|
In a lot of situations, SELECT * will cause errors at run time in your application, rather than at design time. It hides the knowledge of column changes, or bad references in your applications. |
|||
|
|
If you name the columns in a SELECT statement, they will be returned in the order specified, and may thus safely be referenced by numerical index. If you use "SELECT *", you may end up receiving the columns in arbitrary sequence, and thus can only safely use the columns by name. Unless you know in advance what you'll be wanting to do with any new column that gets added to the database, the most probable correct action is to ignore it. If you're going to be ignoring any new columns that get added to the database, there is no benefit whatsoever to retrieving them. |
|||
|
|
|
Generally you have to fit the results of your This way you can add fields to your tables (even in the middle of them) for various reasons without breaking sql access code all over the application. |
|||
|
|
|
Using In addition to this, however, it's easier to see when looking at the query what columns are being loaded, without having to look up what's in the table. Yes, if you do add an extra column, it would be faster, but in most cases, you'd want/need to change your code using the query to accept the new columns anyways, and there's the potential that getting ones you don't want/expect can cause issues. For example, if you grab all the columns, then rely on the order in a loop to assign variables, then adding one in, or if the column orders change (seen it happen when restoring from a backup) it can throw everything off. This is also the same sort of reasoning why if you're doing an |
|||
|
|
|
If you really want every column, I haven't seen a performance difference between select (*) and naming the columns. The driver to name the columns might be simply to be explicit about what columns you expect to see in your code. Often though, you don't want every column and the select(*) can result in unnecessary work for the database server and unnecessary information having to be passed over the network. It's unlikely to cause a noticeable problem unless the system is heavily utilised or the network connectivity is slow. |
|||
|
|
|
If you add fields to the table, they will automatically be included in all your queries where you use There is a limit for how much data you can fetch in each row of a result. If you add fields to your tables so that a result ends up being over that limit, you get an error message when you try to run the query. This is the kind of errors that are hard to find. You make a change in one place, and it blows up in some other place. It may even be a less frequently used query so that it takes a while before someone uses it, which makes it even harder to connect it to the cause. If you specify which fields you want in the result, you are safe from this kind of overhead overflow. |
|||
|
|
|
Think of it as reducing the coupling between the app and the database. To summarize the 'code smell' aspect: |
|||
|
|
|
I don't think that there can really be a blanket rule for this. In many cases, I have avoided SELECT *, but I have also worked with data frameworks where SELECT * was very beneficial. As with all things, there are benefits and costs. I think that part of the benefit vs. cost equation is just how much control you have over the datastructures. In cases where the SELECT * worked well, the data structures were tightly controlled (it was retail software), so there wasn't much risk that someone was going to sneek a huge BLOB field into a table. |
|||
|
|
|
writing all column name instead of * ... is good prac. but .. we have * . Why we going for column name wastage of time... ... For some column name we need to specific for each column. ... Client want data not your query ... |
|||
|
|
SELECT COUNT(*)being bad is incredibly old and outdated. For info onSELECT *- see: stackoverflow.com/questions/1960036/… – OMG Ponies Sep 3 '10 at 22:05SELECT COUNT(*)gives a different answer fromSELECT COUNT(SomeColumn)unless the column is a NOT NULL column. And the optimizer can giveSELECT COUNT(*)special treatment - and usually does. Also note thatWHERE EXISTS(SELECT * FROM SomeTable WHERE ...)is given special case treatment. – Jonathan Leffler Sep 3 '10 at 22:28