vote up 34 vote down star
36

All of us who work with relational databases have learned (or are learning) that SQL is different. Eliciting the desired results, and doing so efficiently, involves a tedious process partly characterized by learning unfamiliar paradigms, and finding out that some of our most familiar programming patterns don't work here. What are the most common antipatterns you've seen (or your self committed), whether generic or product-specific, whether in SQL statements directly, or in the ways applications build and apply them?

flag

30 Answers

vote up 37 vote down

Here's my top 3.

Number 1. Failure to specify a field list. (Edit: to prevent confusion: this is a production code rule. It doesn't apply to one-off analysis scripts - unless I'm the author.)

SELECT *
Insert Into blah SELECT *

should be

SELECT fieldlist
Insert Into blah (fieldlist) SELECT fieldlist

Number 2. Using a cursor and while loop, when a while loop with a loop variable will do.

DECLARE @LoopVar int

SET @LoopVar = (SELECT MIN(TheKey) FROM TheTable)
WHILE @LoopVar is not null
BEGIN
  -- Do Stuff with current value of @LoopVar
  ...
  --Ok, done, now get the next value
  SET @LoopVar = (SELECT MIN(TheKey) FROM TheTable
    WHERE @LoopVar < TheKey)
END

Number 3. DateLogic through string types.

--Trim the time
Convert(Convert(theDate, varchar(10), 121), datetime)

Should be

--Trim the time
DateAdd(dd, DateDiff(dd, 0, theDate), 0)
link|flag
1  
hmmm, I'll give you a +1 for points 2 and 3 alone, but developers overplay rule 1. It has it's place sometimes. – annakata Dec 6 '08 at 20:01
What is the reasoning behind #1? – jalf Dec 6 '08 at 20:05
3  
When you use select *, you get whatever is in the table. Those columns may change names and order. Client code frequently relies on names and order. Every 6 months I'm asked how to preserve column order when modifying a table. If the rule was followed it wouldn't matter. – David B Dec 6 '08 at 20:11
I've used #2 sometimes, others I've gone the cursor route (though then I first save the results of the query on a table var, open the cursor on that). I've always wondered if someone has done a performance test of both. – Joe Pineda Dec 7 '08 at 6:13
@Joe, A cursor can allow parallelism, while a "loop over keys" or a table var can't. In that scenario, the cursor wins for performance. Here's another stackoverflow article about cursors: stackoverflow.com/questions/172526/… – David B Dec 7 '08 at 16:23
show 1 more comment
vote up 37 vote down

I am consistently disappointed by most programmers tendency to mix their UI-logic in the data access layer:

SELECT
    FirstName + ' ' + LastName as "Full Name",
    case UserRole
        when 2 then "Admin"
        when 1 then "Moderator"
        else "User"
    end as "User's Role",
    case SignedIn
        when 0 then "Logged in"
        else "Logged out"
    end as "User signed in?",
    Convert(varchar(100), LastSignOn, 101) as "Last Sign On",
    DateDiff('d', LastSignOn, getDate()) as "Days since last sign on",
    AddrLine1 + ' ' + AddrLine2 + ' ' + AddrLine3 + ' ' +
        City + ', ' + State + ' ' + Zip as "Address",
    'XXX-XX-' + Substring(
        Convert(varchar(9), SSN), 6, 4) as "Social Security #"
FROM Users

Normally, programmers do this because they intend to bind their dataset directly to a grid, and its just convenient to have SQL Server format server-side than format on the client.

Queries like the one shown above are extremely brittle because they tightly couple the data layer to the UI layer. On top of that, this style of programming thoroughly prevents stored procedures from being reusable.

link|flag
1  
A good poster-child pattern for maximum coupling across the largest possible number of tiers/abstraction layers. – le dorfier Dec 6 '08 at 22:33
1  
It may not be good for de-coupling, though for performance reasons I've done stuff like that often, iterative changes done by SQL Server are faster than done by code in mid-tier. I don't get you reusability point - nothing stops you from running the SP and renaming the cols if so you wish. – Joe Pineda Dec 7 '08 at 6:17
3  
My favorite is when people embed HTML AND javascript, e.g. SELECT '<a href=... onclick="">' + name ' </a>' – Matt Rogish Jan 14 at 17:19
1  
With queries like this, you can edit the grid in a website with a simple alter statement. Or change the content of an export, or reformat a date in a report. This makes clients happy, and saves me time. So thanks, but no thanks, I'll stick with queries like this. – Andomar May 18 at 15:13
vote up 22 vote down

Don't have to dig deep for it: Not using prepared statements.

link|flag
Yup. Followed closely in the same context, in my experience, with "not trapping errors". – le dorfier Dec 6 '08 at 22:37
vote up 20 vote down
  • Human readable password fields, egad. Self explanatory.

  • Using LIKE against indexed columns, and I'm almost tempted to just say LIKE in general.

  • Recycling SQL-generated PK values.

  • Surprise nobody mentioned the god-table yet. Nothing says "organic" like 100 columns of bit flags, large strings and integers.

  • Then there's the "I miss .ini files" pattern: storing CSVs, pipe delimited strings or other parse required data in large text fields.

  • And for MS SQL server the use of cursors at all. There's a better way to do any given cursor task.

Edited because there's so many!

link|flag
i dont understand the LIKE argument, I never used LIKE because I was bored, but only because they want wildcards search. In my current job every column in search is LIKED. I bet it will get optimized when its too slow, but i dont get the LIKE hate. – 01 Dec 6 '08 at 20:38
1  
wrong about cursors, i would be hesitant about saying doing any particular thing is 100% right or 100% wrong – Shawn Dec 6 '08 at 23:41
At least in SQL Server, you can parse delimited strings faster than you can get data out of an XML column/object. So they do have their place, if you care about performance! And I can't understand your aversion to LIKE, I try hard and can't think of why stay away of LIKE. – Joe Pineda Dec 7 '08 at 6:22
Sometimes you just have to use a cursor! Unless you are willing to do your processing out of the database, like say in a specific purpose, home-brewed tiny utility... Think of a way to send a mail to a group of people, for instance, without either cursors or an external app – Joe Pineda Dec 7 '08 at 6:43
1  
@tuinstoel: How does LIKE '%blah%' get to use an index? Indexing relies on ordering and this example searches a random middle position of a string. (Indexes order by the 1st character 1st, and so looking at the middle 4 characters gives a virtually random order...) – Dems Feb 4 at 15:06
show 4 more comments
vote up 18 vote down
var query = "select COUNT(*) from Users where UserName = '" + tbUser.Text + "' and Password = '" + tbPassword.Text +"'";

1) Not sanitizing user input (!!!!!)
2) Query via concatenation, aka not using parameterized queries
3) Cleartext passwords

link|flag
All of which can usefully be dealt with by using a database abstracton layer of some (any) kind. – le dorfier Dec 7 '08 at 3:04
@doofledorfer: Agree, a middle tier would be definitely better in a case like this, plus providing results caching as a nice side effect. – Joe Pineda Dec 7 '08 at 6:45
Awesome example. If a dev groks how to replace that with a good solution, they are half-way to becoming a decent SQL dev. – Steve McLeod Dec 7 '08 at 8:17
vote up 17 vote down

My bugbears are the 450 column Access tables that have been put together by the 8 year old son of the Managing Director's best friends dog groomer and the dodgy lookup table that only exists because somebody doesn't know how to normalise a datastructure properly.

Typically, this lookup table looks like this:

ID INT, Name NVARCHAR(132), IntValue1 INT, IntValue2 INT, CharValue1 NVARCHAR(255), CharValue2 NVARCHAR(255), Date1 DATETIME, Date2 DATETIME

I've lost count of the number of clients I've seen who have systems that rely on abominations like this.

link|flag
Worse yet, I read that in newest version of Access that's actually supported automatically, which I fear will encourage more of this Value1, Value2, Value3... column fetichism – Joe Pineda Dec 7 '08 at 6:18
LOL... Beautiful. – Cj Anderson Mar 23 at 3:52
vote up 13 vote down

Using meaningless table aliases:

from employee t1,
department t2,
job t3,
...

Makes reading a large SQL statement so much harder than it needs to be

link|flag
1  
aliases? hell I've seen actual column names like that – annakata Dec 6 '08 at 20:03
3  
terse aliases are OKAY. If you want a meaningful name then don't use an alias at all. – Joel Coehoorn Dec 6 '08 at 22:56
6  
He didn't say "terse," he said "meaningless." In my book there would be nothing wrong with using e, d, and j as the aliases in the example query. – Robert Rossney Dec 7 '08 at 9:14
2  
Absolutely, Robert - e, d, and j would be fine with me. – Tony Andrews Dec 7 '08 at 12:06
1  
Aliasing fields/tables (to something sensible) is very usfeul in large and well organised data warehouses. it allows you to copy and paste a query, then just change one table name; relying on the alias for all it's references. – Dems Feb 4 at 15:07
show 2 more comments
vote up 11 vote down

Overuse of temporary tables and cursors.

link|flag
Good evidence that "all I know is procedural languages". – le dorfier Dec 6 '08 at 22:34
vote up 10 vote down

use SP as the prefix of the store procedure name because it will first search in the System procedures location rather than the custom ones

link|flag
"usp" FTW :) – annakata Dec 6 '08 at 19:59
1  
Can also be extended to using any other common prefix for all stored procedures, making it more difficult to pick through a sorted list. – le dorfier Dec 6 '08 at 22:36
2  
+1 for doofledorfer comment!! I've seen this a lot, I find this idiotic and does indeed make searching for a particular SP very difficult!!! Also extended to "vw_" for views, "tbl_" for tables and the like, how I hate them! – Joe Pineda Dec 7 '08 at 6:24
The prefixes can be useful if you're scripting the objects to files (eg: for source control, deployments or migration) – Rick Jul 15 at 23:59
vote up 9 vote down
select some_column, ...
from some_table
group by some_column

and assuming that the result will be sorted by some_column. I've seen this a bit with Sybase where the assumption holds (for now).

link|flag
upvote for EVER assuming sort order, just because that was the way it showed up in the query tool that one time – Joel Coehoorn Dec 6 '08 at 23:00
I've even seen this reported as a bug more than once. – le dorfier Dec 7 '08 at 3:02
in MySQL, it is documented to sort. <dev.mysql.com/doc/refman/…;. So blame MySQL (again). – derobert Dec 7 '08 at 6:09
In Oracle, the unsorted results (almost) always matched the grouping - until version 10G. Lots of rework for the developers who used to leave out the ORDER BY! – Tony Andrews Jan 14 at 17:05
vote up 8 vote down

The ones that I dislike the most are

  1. Using spaces when creating tables, sprocs etc. I'm fine with CamelCase or under_scores and singular or plurals and UPPERCASE or lowercase but having to refer to a table or column [with spaces], especially if [ it is oddly spaced] (yes, I've run into this) really irritates me.

  2. Denormalized data. A table doesn't have to be perfectly normalized, but when I run into a table of employees that has information about their current evaluation score or their primary anything, it tells me that I will probably need to make a separate table at some point and then try to keep them synced. I will normalize the data first and then if I see a place where denormalization helps, I'll consider it.

  3. Overuse of either views or cursors. Views have a purpose, but when each table is wrapped in a view it's too much. I've had to use cursors a few times, but generally you can use other mechanisms for this.

  4. Access. Can a program be an anti-pattern? We have SQL Server at my work, but a number of people use access due to it's availabilty, "ease of use" and "friendliness" to non-technical users. There is too much here to go into, but if you've been in a similar environment, you know.

link|flag
#4 - there is another thread just for <a href='stackoverflow.com/questions/327199/…'>Access</a> :). – le dorfier Dec 6 '08 at 22:40
Access is NOT a DBMS. It's a RAD environment, with a very simple database manager included. SQL Server, Oracle, et al. will never replace it, unless you add a VB-like language and a Crystal Reports like facility. – Joe Pineda Dec 7 '08 at 6:31
vote up 5 vote down

Identical subqueries in a query.

link|flag
1  
Unfortunately, sometimes you just can't avoid that - in SQL 2000 there was no "WITH" keyword, and using UDFs to encapsulate common subqueries sometime leads to performance penalties, blame MS on that... – Joe Pineda Dec 7 '08 at 6:25
Well, hopefully they will get around to adding it one of these days. – EvilTeach Dec 9 '08 at 2:24
In SQL 2000, you can use table variables. – recursive Dec 30 '08 at 4:33
@recursive: you can't have indexes on a table variable, which will often make it slower than a subquery. However you could use a temporary table with custom indexes. – Rick Jul 16 at 0:08
Cool, have been working with SQL for years, and didn't even know Common Table Expressions exist (though I would have needed them). Now I do! Thanks! – sleske Oct 29 at 23:27
vote up 5 vote down

using @@IDENTITY instead of SCOPE_IDENTITY()

Quoted from this answer :

  • @@IDENTITY returns the last identity value generated for any table in the current session, across all scopes. You need to be careful here, since it's across scopes. You could get a value from a trigger, instead of your current statement.
  • SCOPE_IDENTITY returns the last identity value generated for any table in the current session and the current scope. Generally what you want to use.
  • IDENT_CURRENT returns the last identity value generated for a specific table in any session and any scope. This lets you specify which table you want the value from, in case the two above aren't quite what you need (very rare). You could use this if you want to get the current IDENTITY value for a table that you have not inserted a record into.
link|flag
vote up 5 vote down

I need to put my own current favorite here, just to make the list complete. My favorite antipattern is not testing your queries.

This applies when:

  1. Your query involves more than one table.
  2. You think you have an optimal design for a query, but don't bother to test your assumptions.
  3. You accept the first query that works, with no clue about whether it's even close to optimized.

And any tests run against atypical or insufficient data don't count. If it's a stored procedure, put the test statement into a comment and save it, with the results. Otherwise, put it into a comment in the code with the results.

link|flag
A very useful technique for minimal T-SQL test: In the .SQL file where you define your SP, UDF, etc., immediately after it create a block test like IF 1=2 BEGIN (sample cases for your code, with expected results as comments) END – Joe Pineda Dec 7 '08 at 6:34
SQL Server does parse the code within the test block, even though it's never executed. So when your object gets modified and receives more parameters, or of different type, etc. or an objects it depends on is modified you'll receive an error just by asking for an execution plan! – Joe Pineda Dec 7 '08 at 6:37
vote up 4 vote down
  • The FROM TableA, TableB WHERE syntax for JOINS rather than FROM TableA INNER JOIN TableB ON

  • Making assumptions that a query will be returned sorted a certain way without putting an ORDER BY clause in, just because that was the way it showed up during testing in the query tool.

link|flag
My Oracle DBAs always complain that I use "ANSI joins", that is, what you present as the correct way. But I keep doing it, and I suspect that deep down they know its better. – Steve McLeod Dec 7 '08 at 8:19
I suspect that Oracle wishes standard SQL would go away. :-) Also, you can't mix implicit and explicit JOINS (aka ANSI JOINs) in MySQL 5 - it doesn't work. Which is another argument for explicit JIONs. – staticsan Dec 8 '08 at 0:42
I would say that even A INNER JOIN B ON is an anti pattern. I prefer A INNER JOIN B USING. – John Nilsson Mar 10 at 21:39
vote up 3 vote down

1) I don't know it's an "official" anti-pattern, but I dislike and try to avoid string literals as magic values in a database column.

An example from MediaWiki's table 'image':

img_media_type ENUM("UNKNOWN", "BITMAP", "DRAWING", "AUDIO", "VIDEO", 
    "MULTIMEDIA", "OFFICE", "TEXT", "EXECUTABLE", "ARCHIVE") default NULL,
img_major_mime ENUM("unknown", "application", "audio", "image", "text", 
    "video", "message", "model", "multipart") NOT NULL default "unknown",

(I just notice different casing, another thing to avoid)

I design such cases as int lookups into tables ImageMediaType and ImageMajorMime with int primary keys.

2) date/string conversion that relies on specific NLS settings

CONVERT(NVARCHAR, GETDATE())

without format identifier

link|flag
And no syntactical indentation, either. Argghh. – le dorfier Dec 7 '08 at 3:01
vote up 3 vote down

Contrarian view: over-obsession with normalization.

Most SQL/RBDBs systems give one lots of features (transactions, replication) that are quite useful, even with unnormalized data. Disk space is cheap, and sometimes it can be simpler (easier code, faster development time) to manipulate / filter / search fetched data, than it is to write up 1NF schema, and deal with all the hassles therein (complex joins, nasty subselects, etc).

I have found the over-normalized systems are often premature optimization, especially during early development stages.

(more thoughts on it... http://writeonly.wordpress.com/2008/12/05/simple-object-db-using-json-and-python-sqlite/)

link|flag
I think non-normalization is often premature optimization. – tuinstoel Jan 1 at 13:17
Sometimes it is, sometimes it isn't. Luckily, it's often easy to test, and different options work with different db needs. – Gregg Lind Jan 5 at 0:26
vote up 2 vote down

The two I find the most, and can have a significant cost in terms of performance are:

  • Using cursors instead of a set based expression. I guess this one occurs frequently when the programmer is thinking procedurely.

  • Using correlated sub-queries, when a join to a derived table can do the job.

link|flag
I agree if you mean what I think you mean; although a correlated sub-query is a type of derived table IIRC. – le dorfier Dec 7 '08 at 5:08
A derived table is a set operation, whereas a correlated subquery runs for each row in the outer query, making it less efficient (9 times out of 10) – Mitch Wheat Dec 7 '08 at 6:07
A couple years ago I found to my surprise that SQL S. is somehow optimized for handling correlated queries: for simple ones you get the same execution plan as with a logically equivalent query using a JOIN! Also, correlated queries that bring Oracle to its knees run only slowly on SQL S.! – Joe Pineda Dec 7 '08 at 6:39
That's why I always test it both ways. And I <i>do</> usually try it both ways. In practice, for SQL Server anyway, I've usually found the correlated sq to be no slower. – le dorfier Dec 7 '08 at 8:46
I cheated and googled "correlated subquery derived table". That's where I discovered two sources saying a csq is one type of derived table. (It also mentioned the common misapprehension among SQL Server users. I didn't even know enough to be confused; so Mitch is up on points.) – le dorfier Dec 7 '08 at 8:49
show 2 more comments
vote up 2 vote down
  • The Altered View - A view that is altered too often and without notice or reason. The change will either be noticed at the most inappropriate time or worse be wrong and never noticed. Maybe your application will break because someone thought of a better name for that column. As a rule views should extend the usefulness of base tables while maintaining a contract with consumers. Fix problems but don't add features or worse change behavior, for that create a new view. To mitigate do not share views with other projects and, use CTEs when platforms allow. If your shop has a DBA you probably can't change views but all your views will be outdated and or useless in that case.

  • The !Paramed - Can a query have more than one purpose? Probably but the next person who reads it won't know until deep meditation. Even if you don't need them right now chances are you will, even if it's "just" to debug. Adding parameters lowers maintenance time and keep things DRY. If you have a where clause you should have parameters.

  • The case for no CASE -

    SELECT
    CASE @problem
    WHEN 'Need to replace column A with this medium to large collection of strings hanging out in my code.'
    THEN 'Create a table for lookup and add to your from clause.'
    WHEN 'Scrubbing values in the result set based on some business rules.'
    THEN 'Fix the data in the database'
    WHEN 'Formating dates or numbers.'
    THEN 'Apply formating in the presentation layer.'
    WHEN 'Createing a cross tab'
    THEN 'Good, but in reporting you should probably be using cross tab, matrix or pivot templates'
    ELSE 'You probably found another case for no CASE but now I have to edit my code instead of enriching the data...' END

link|flag
Loved that third one. I'm already using it locally... – alphadogg Feb 26 at 20:44
Thanks for the props. :) – jms Feb 26 at 20:53
vote up 2 vote down

Putting stuff in temporary tables, especially people who switch from SQL Server to Oracle have a habit of overusing temporary tables. Just use nested select statements.

link|flag
vote up 2 vote down

I just put this one together, based on some of the SQL responses here on SO.

It is a serious antipattern to think that triggers are to databases as event handlers are to OOP. There's this perception that just any old logic can be put into triggers, to be fired off when a transaction (event) happens on a table.

Not true. One of the big differences are that triggers are synchronous - with a vengeance, because they are synchronous on a set operation, not on a row operation. On the OOP side, exactly the opposite - events are an efficient way to implement asynchronous transactions.

link|flag
vote up 2 vote down
SELECT FirstName + ' ' + LastName as "Full Name", case UserRole when 2 then "Admin" when 1 then "Moderator" else "User" end as "User's Role", case SignedIn when 0 then "Logged in" else "Logged out" end as "User signed in?", Convert(varchar(100), LastSignOn, 101) as "Last Sign On", DateDiff('d', LastSignOn, getDate()) as "Days since last sign on", AddrLine1 + ' ' + AddrLine2 + ' ' + AddrLine3 + ' ' + City + ', ' + State + ' ' + Zip as "Address", 'XXX-XX-' + Substring(Convert(varchar(9), SSN), 6, 4) as "Social Security #" FROM Users

Or, cramming everything into one line.

link|flag
Used a previous comment's query, just because that was the first SQL-statement I had available. – Jasper Bekkers Apr 19 at 3:54
vote up 2 vote down

Temporary Table abuse.

Specifically this sort of thing:

SELECT personid, firstname, lastname, age
INTO #tmpPeople
FROM People
WHERE lastname like 's%'

DELETE FROM #tmpPeople
WHERE firstname = 'John'

DELETE FROM #tmpPeople
WHERE firstname = 'Jon'

DELETE FROM #tmpPeople
WHERE age > 35

UPDATE People
SET firstname = 'Fred'
WHERE personid IN (SELECT personid from #tmpPeople)

Dont build a temporary table from a query, only to delete the rows you dont need.

And yes, I have seen pages of code in this form in production DBs.

link|flag
vote up 1 vote down

Using SQL as a glorified ISAM (Indexed Sequential Access Method) package. In particular, nesting cursors instead of combining SQL statements into a single, albeit larger, statement. This also counts as 'abuse of the optimizer' since in fact there isn't much the optimizer can do. This can be combined with non-prepared statements for maximum inefficiency:

DECLARE c1 CURSOR FOR SELECT Col1, Col2, Col3 FROM Table1

FOREACH c1 INTO a.col1, a.col2, a.col3
    DECLARE c2 CURSOR FOR
        SELECT Item1, Item2, Item3
            FROM Table2
            WHERE Table2.Item1 = a.col2
    FOREACH c2 INTO b.item1, b.item2, b.item3
        ...process data from records a and b...
    END FOREACH
END FOREACH

The correct solution (almost always) is to combine the two SELECT statements into one:

DECLARE c1 CURSOR FOR
    SELECT Col1, Col2, Col3, Item1, Item2, Item3
        FROM Table1, Table2
        WHERE Table2.Item1 = Table1.Col2
        -- ORDER BY Table1.Col1, Table2.Item1

FOREACH c1 INTO a.col1, a.col2, a.col3, b.item1, b.item2, b.item3
    ...process data from records a and b...
END FOREACH

The only advantage to the double loop version is that you can easily spot the breaks between values in Table1 because the inner loop ends. This can be a factor in control-break reports.

Also, sorting in the application is usually a no-no.

link|flag
The style, although not this syntax, is particularly rampant in PHP in my experience. – le dorfier Dec 6 '08 at 22:32
The syntax is actually IBM Informix-4GL - but it is clear enough not to need much in the way of explanation (I think). And the style is rampant in a lot of SQL programs - regardless of programming language. – Jonathan Leffler Dec 7 '08 at 7:58
vote up 1 vote down

Maybe not an anti pattern but it annoys me is when DBA's of certain DB's (ok I'm talking about Oracle here) write SQL Server code using Oracle style and code conventions and complain when it runs so bad. Enough with the cursors Oracle people! SQL is meant to be set based.

link|flag
1  
I think this is more related to your DBA than it is to Oracle. Oracle advices people to think and act set based too instead of row by row procedural thinking with cursors. – tuinstoel Jan 1 at 13:37
You are probably right tuinstoel. But we have numerous DBA's in my company and they all seem to love cursors. – Craig Jan 5 at 1:47
Then they're not very good DBA's.... You don't happen to work in the same place as me do you? ;) – Andrew Rollings Jan 21 at 19:12
vote up 1 vote down

Joining redundant tables into a query like this:

select emp.empno, dept.deptno
from emp
join dept on dept.deptno = emp.deptno;
link|flag
vote up 1 vote down

For storing time values, only UTC timezone should be used. Local time should not be used.

link|flag
I've still not found a good simple solution for converting from UTC to local time for dates in the past, when daylight saving has to be considered, with varying change dates accross years and countries, as well as all exceptions within countries. So UTC doesn't save you from conversion complexity. However, it's important to have a way to know the timezone of every stored datetime. – ckarras Jun 14 at 11:38
vote up 0 vote down

SELECT * FROM TABLE;

  1. Don't use *

  2. Doesn't have to be capitals!

link|flag
1  
I actually like capitals very much. They let you easily filter out the "SQLy" part of the statement, and focus on the important part (fields, tables, etC) – Daniel Magliola Dec 6 '08 at 20:31
Agree with #1, not #2 – Michael Haren Dec 6 '08 at 21:25
#2 is not convincingly demonstrated: SELECT COL1, COL2, COL3, SOMETHING AS "ELSE" FROM SOMEHWERE, SOMEWHERE WHERE SOMEHWERE.SOMETHING = SOMEWHERE.ANOTHERTHING is objectionable; I use capitals for keywords, and mixed case or lower case for database objects (tables, columns, etc). – Jonathan Leffler Dec 6 '08 at 22:23
John's example demonstrates much better what I'm talking about with 2. – Rich Bradshaw Dec 6 '08 at 22:38
SELECT * FROM table is only bad if the code makes assumptions about the fields (or their order) that come back. – staticsan Dec 8 '08 at 0:43
show 2 more comments
vote up 0 vote down

Having 1 table

code_1
value_1
code_2
value_2
...
code_10
value_10

Instead of having 3 tables

code, value and code_value

You never know when you may have need more than 10 couples code, value.

You don't waste disk space if you only need one couple.

link|flag

Your Answer

Get an OpenID
or

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