vote up 42 vote down star
21

I've heard a lot lately that SQL is a terrible language, and it seems that every framework under the sun comes pre-packaged with a database abstraction layer.

In my experience though, SQL is often the much easier, more versatile, and more programmer-friendly way to manage data input and output. Every abstraction layer I've used seems to be a markedly limited approach with no real benefit.

What makes SQL so terrible, and why are database abstraction layers valuable?

flag
10  
what about type safety? – johnny Oct 29 at 13:28
3  
Exactly who are these abstraction layers targetted to? SQL is not a language that everybody's good at, and so they might be aimed at mediocre programmers. SQL itself isn't at all a good language for a non-programmer. – David Thornley Oct 29 at 14:28
2  
should be a wiki – KM Oct 29 at 15:30
8  
@ David: Define a (computer) language that is "good for a non-programmer". Non-programmers, IMHO, should stay away from programming languages (and in the wider sense of the word, SQL). – DevSolar Oct 29 at 15:31
3  
all the answers should be wiki too. it is just insane that questions and answers like these get so many up votes. I thought this was a technical forum? you can solve someone's problem by providing some difficult to write code and get one or two up votes, yet answer a question like this and get loads of up votes. that's really lame if you ask me. – KM Oct 30 at 13:28
show 5 more comments

41 Answers

1 2 next
vote up 0 vote down

While SQL does get the job done it certainly has issues...


  • it tries to simultaneously be the high level and the low level abstraction, and that's ... odd. Perhaps it should have been two or more standards at different levels.
  • it is a huge failure as a standard. Lots of things go wrong when a standard either stirs in everything, asks too much of implementations, asks too little, or for some reason does not accomplish the partially social goal of motivating vendors and implementors to produce strictly conforming interoperable complete implementations. You certainly cannot say SQL has done any of that. Look at some other standards and note that success or failure of the standard is clearly a factor of the useful cooperation attained:
    • RS-232 (Bad, not nearly enough specified, even which pin transmits and which pin receives is optional, sheesh. You can comply but still achieve nothing. Chance of successful interop: really low until the IBM PC made a de-facto useful standard.)
    • IEEE 754-1985 Floating Point (Bad, overreach: not a single supercomputer or scientific workstation or RISC microprocessor ever adopted it, although eventually after 20 years we were able to implement it nicely in HW. At least the world eventually grew into it.)
    • C89, C99, PCI, USB, Java (Good, whether standard or spec, they succeeded in motivating strict compliance from almost everyone, and that compliance resulted in successful interoperation.)
  • it failed to be selected for arguably the most important database in the world. While this is more of a datapoint than a reason, the fact that Google Bigtable is not SQL and not relational is kind of an anti-achievement for SQL.
link|flag
vote up 0 vote down

SQL isn't too bad at the query level when you get the knack of it, but writing stored procedures is painful in any SQL dialect. It's like programming in GWBASIC with SQL support hacked in.

link|flag
vote up 0 vote down

Machine code is not a bad language. You can write any program you want in it. But there are plenty of good reasons to want an abstraction layer above it. Sometimes higher level abstractions are easier to maintain, faster to develop in, and easier to understand.

link|flag
vote up 0 vote down

Many posts here seem to argue that SQL is bad because it doesn't have "code optimization" features, and that you have no control over execution plans.

What SQL engines are good at is to come up with an execution plan for a written instruction, geared towards the data, the actual contents. If you care to take a look beyond the programming side of things, you will see that there is more to data than bytes being passed between application tiers.

link|flag
vote up 0 vote down

Database abstraction layers are valuable because they allow your code to interact with the database system. SQL isn't terrible - it's just that some people don't understand it, or want to work in one language (e.g. C# instead of C# and SQL). Database abstraction helps separate responsibilities (e.g. programmer and DBA). If you prefer SQL, put all the weight and focus on that side by coding everything in SQL using stored procedures and function for logic, and only use the abstraction layer to make simpler calls into it for your program's purposes.

link|flag
vote up 0 vote down

Having worked with non C/S databases (ISAM) for years it took me a while to become proficient at preparing queries. I'm not talking about the easy queries for CRUD. I am talking about the complex reporting that require joins, unions, nested queries, conditional column expressions etc.

SQL is a language yes but it is not comparable to a procedural programming language it is more analogous to HTML. With HTML you say here browser, render this. With SQL you say here database server fetch or update this data.

I have always weaved layers of abstraction in my code as it suits the application as I have always created reusable libraries for this purpose. But if you depend on others abstractions and avoid a good understanding SQL itself your app will pay the price in terms of performance.

link|flag
vote up 1 vote down

IMO, the problem that I see that people have with SQL has nothing to do with relational design nor the SQL language itself. It has to do with the discipline of modeling the data layer which in many ways is fundamentally different than modeling a business layer or interface. Mistakes in modeling at the presentation layer are generally much easier to correct than at the data layer where you have multiple applications using the database. These problems are the same as those encountered in modeling a service layer in SOA designs where you have to account for current consumers of your service and the input and output contracts.

SQL was designed to interact with relational database models. There are other data models that have existed for some time, but the discipline about designing the data layer properly exists regardless of the theoretical model used and thus, the difficulties that developers typically have with SQL are usually related to attempts to impose a non-relational data model onto a relational database product.

link|flag
vote up 0 vote down

I'll stand up for SQL. It's best if you can think in terms of sets. I prefer to isolate it in stored procs - for security and seperation.

link|flag
vote up 2 vote down

• Every vendor extends the SQL syntax to suit their needs. So unless you're doing fairly simple things, your SQL code is not portable.

• The syntax of SQL is not orthogonal; e.g., the select, insert, update,anddelete statements all have completely different syntactical structure.

link|flag
show 2 more comments
vote up 0 vote down

Since SQL is not a general-purpose programming language, database applications must use some other language for the rest of the implementation. Developers who know the host language but not SQL often like to be able to do SQL-like things in the host language. Also, an abstraction layer can take care of the repetitive process of converting data between the a representation that is natural for the database, and a representation that is natural for the host language. These motivations would still exist even if SQL did not have portability issues.

link|flag
vote up 0 vote down

There's no love for SQL because SQL is bad in syntax, semantics and current usage. I'll explain:

  • it's syntax is a cobol shrapnel, all the cobol criticism applies here (to a lesser degree, to be fair). Trying to be natural language like without actually attempting to interpret natural language creates arbirtrary syntax (is it DROP TABLE or DROP , UPDATE TABLE , UPDATE or UPDATE IN , DELETE or DELETE FROM ...) and syntactical monstrosities like SELECT (how many pages does it fill?)
  • semantics is also deeply flawed, Date explains it in great detail, but it will suffice to note that a three valued boolean logic doesn't really fit a relational algebra where a row can only be or not be part of a table
  • having a programming language as the main (and often only) interface to databases proved to be a really bad choice and it created a new category of security flaws
link|flag
vote up 0 vote down

"Yeah, if the computer was actually smart enough to do that. But it isn't. [...] Maybe someday the technology will be there, or maybe that's an impossible dream. But it isn't there today."

Anyone who felt tempted to vote this up, try and answer the question "Does there exist a relational DBMS today that allows me to just declare just any database constraint, and have the DBMS enforce that constraint for me, without me having to do any programming (not even triggers) ?

If your answer is "No", then you are just plain idiots. The answer is "yes".

The future is always possible. And for every problem that is today unsolvable, there exists a point in time where that problem will no longer be unsolvable. But the idiots who are too preoccupied with "I know that this works and I'm going to stick with it" will not see that when it happens, focussed as they are on their horse-glasses vision of what was possible yesterday.

link|flag
vote up 3 vote down

I would say that a database abstraction layer included with a framework is a good thing because it solves two very important problems:

  1. It keeps the code distinct. By putting the SQL into another layer, which is generally very thin and should only be doing the basics of querying and handoff of results (in a standardized way), you keep your application free from the clutter of SQL. It's the same reason web developers (should) put CSS and Javascript in separate files. If you can avoid it, do not mix your languages.

  2. Many programmers are just plain bad at using SQL. For whatever reason, a large number of developers (especially web developers) seem to be very, very bad at using SQL, or RDBMSes in general. They treat the database (and SQL by extension) as the grubby little middleman they have to go through to get to data. This leads to extremely poorly thought out databases with no indexes, tables stacked on top of tables in dubious manners, and very poorly written queries. Or worse, they try to be too general (Expert System, anyone?) and cannot reasonably relate data in any meaningful way.

Unfortunately, sometimes the way that someone tries to solve a problem and tools they use, whether due to ignorance, stubbornness, or some other trait, are in direct opposition with one another, and good luck trying to convince them of this. As such, in addition to just being a good practice, I consider a database abstraction layer to be a sort of safety net, as it not only keeps the SQL out of the poor developer's eyes, but it makes their code significantly easier to refactor, since all the queries are in one place.

link|flag
vote up 0 vote down

SQL is geared to work with relational data. C# / Java / C++ are object oriented languages. So if your application is written in one of the object oriented (or procedural) languages you will need to use a layer of abstraction over SQL. Your choice is to either use an existing one or rolling your own.

Another point to remember is - quite a few products are database agnostic. Let us say you build this killer CRM application and you have fine tuned SQL to work with DB2 and ONLY DB2 due to gratuitous use of DB2 specific SQL extensions. Now how do you sell this application to a company that has already invested millions in licensing and support fees for their Oracle databases?

link|flag
vote up 0 vote down

I'm not going to read all the answeres, so if someone said it already, oh well.

SQL is not a terrible language.. it just doesnt to everything one would LIKE it to do. For instance.. 2 simple tables and 1 relationship between them. Now.. I've defined the relationship.. but SQL offers me no way of USING it. I still have to write a JOIN (or WHERE clause) to instruct SQL in the manner in which the two tables should be related.

Wouldn't it be nice if we could just write SELECT t1.ID, t1.Name, t2.Whatever FROM table1 t1, table2 t2 USING t1_t2_relationship

Anyhow.. the promise of tomorrow huh? LINQ kind of allows this. I like LINQ.

link|flag
vote up 0 vote down

I've found that database abstraction layers exist not to isolate you from actual SQL itself, but the sometimes primitive and difficult to maintain database "programming languages" that have grown up around it.

I have a SQL Server background so I'm primarily referring to Transact SQL and stored procedures.

In many peoples minds SQL is (unfairly) lumped together with such things as 1000 line stored procedures that call other stored procedures and create side effects all over the place. This maintenance nightmare then greatly exacerbates difficulty in first isolating and then understanding actual SQL statements.

link|flag
vote up 3 vote down

Heard a lot recently? I hope you're not confusing this with the NoSql movement. As far as i'm aware that is mainly a bunch of people who use NoSql for high scalability web apps and appear to have forgotten that SQL is an effective tool in a non "high scalability web app" scenario.

The abstraction layer business is just about sorting out the difference between Object Oriented code and Table - Set based code such as SQL likes to talk. Usually this results in writing lots of boiler plate and dull transition code between the two. ORM automates this and thus saves time for business objecty people.

link|flag
vote up 4 vote down

I've heard a lot lately that SQL is a terrible language, and it seems that every framework under the sun comes pre-packaged with a database abstraction layer.

Note that these layers just convert their own stuff into SQL. For most database vendors SQL is the only way to communicate with the engine.

In my experience though, SQL is often the much easier, more versatile, and more programmer-friendly way to manage data input and output. Every abstraction layer I've used seems to be a markedly limited approach with no real benefit.

… reason for which I just described above.

The database layers don't add anything, they just limit you. They make the queries disputably more simple but never more efficient.

By definition, there is nothing in the database layers that is not in SQL.

What makes SQL so terrible, and why are database abstraction layers valuable?

SQL is a nice language, however, it takes some brain twist to work with it.

In theory, SQL is declarative, that is you declare what you want to get and the engine provides it in the fastest way possible.

In practice, there are many ways to formulate a correct query (that is the query that return correct results).

The optimizers are able to build a Lego castle out of some predefined algorithms (yes, they are multiple), but they just cannot make new algorithms. It still takes an SQL developer to assist them.

However, some people expect the optimizer to produce "the best plan possible", not "the best plan available for this query with given implementation of the SQL engine".

And as we all know, when the computer program does not meet people's expectations, it's the program that gets blamed, not the expectations.

In most cases, however, reformulating a query can produce a best plan possible indeed. There are tasks when it's impossible, however, with the new and growing improvements to SQL these cases get fewer and fewer in number.

It would be nice, though, if the vendors provided some low-level access to the functions like "get the index range", "get a row by the rowid" etc., like C compilers let you to embed the assembly right into the language.

I recenty wrote an article on this in my blog:

link|flag
vote up 3 vote down

SQL is based on Set Theory, while most high level languages are object oriented these days. Object programmers typically like to think in objects, and have to make a mental shift to use Set based tools to store their objects. Generally, it is much more natural (for the OO programmer) to just cut code in the language of their choice and do something like object.save or object.delete in application code instead of having to write sql queries and call the database to achieve the same result.

Of course, sometimes for complex things, SQL is easier to use and more efficient, so it is good to have a handle on both types of technology.

link|flag
vote up 3 vote down

For experienced SQL programmer the bad sides are

  • Verbosity
  • As many have said here, SQL is declarative, which means optimizing is not direct. It's like rallying compared to circuit racing.
  • Frameworks that try to address all possible dialects and don't support shortcuts of any of them
  • No easy version control.

For others, the reasons are that

  • some programmers are bad at SQL. Probably because SQL operates with sets, while programming languages work in object or functional paradigm. Thinking in sets (union, product, intersect) is a matter of habbit that some people don't have.
  • some operations aren't self-explanatory: i.e. at first it's not clear that where and having filter different sets.
  • there are too many dialects

The primary goal of SQL frameworks is to reduce your typing. They somehow do, but too often only for very simple queries. If you try doing something complex, you have to use strings and type a lot. Frameworks that try to handle everything possible, like SQL Alchemy, become too huge, like another programming language.

link|flag
vote up 4 vote down

SQL is excellent for certain kinds of tasks, especially manipulating and retrieving sets of data.

However, SQL is missing (or only partially implements) several important tools for managing change and complexity:

  • Encapsulation: SQL's encapsulation mechanisms are coarse. When you write SQL code, you have to know everything about the implementation of your data. This limits the amount of abstraction you can achieve.

  • Polymorphism: if you want to perform the same operation on different tables, you've got to write the code twice. (One can mitigate this with imaginative use of views.)

  • Visibility control: there's no standard SQL mechanism for hiding pieces of the code from one another or grouping them into logical units, so every table, procedure, etc. is accessible from every other one, even when it's undesirable.

  • Modularity and Versioning

Finally, manually coding CRUD operations in SQL (and writing the code to hook it up to the rest of one's application) is repetitive and error-prone.

A modern abstraction layer provides all of those features, and allows us to use SQL where it's most effective while hiding the disruptive, repetitive implementation details. It provides tools to help overcome the object-relational impedance mismatch that complicates data access in object-oriented software development.

link|flag
show 1 more comment
vote up 1 vote down

Quick, write me SQL to paginate a dataset that works in MySQL, Oracle, MSSQL, PostgreSQL, and DB2.

Oh, right, standard SQL doesn't define any operators to limit the number of results coming back and which row to start at.

link|flag
2  
Why are you trying to target all of those environments with your code? Write me C code for threads that works in Mac OS 9, Windows NT, OS/2 Warp, and Solaris. – Steven Huwig Oct 29 at 16:35
1  
@Steven Huwig: I'd probably use an abstraction layer to do it for me... which is exactly what the question was asking. – R. Bemrose Oct 29 at 18:11
show 1 more comment
vote up 2 vote down

SQL has many flaws, as some other posters here have pointed out. Still, I much prefer to use SQL over many of the tools that people offer as alternatives, because the "simplifications" are often more complicated than the thing they were supposed to simplify.

My theory is that SQL was invented by a bunch of ivory-tower blue-skiers. The whole non-procedural structure. Sounds great: tell me what you want rather than how you want to do it. But in practice, it's often easier to just give the steps. Often this seems like trying to give car maintenance instructions by describing how the car should perform when you're done. Yes, you could say, "I want the car to once again get 30 miles per gallon, and to run with this humming sound like this ... hmmmm ... and, etc" But wouldn't it be easier for everyone to just say, "Replace the spark plugs" ? And even when you do figure out how to express a complex query in non-procedural terms, the database engine often comes up with a very inefficient execution plan to get there. I think SQL would be much improved by the addition of standardized ways to tell it which table to read first and what index to use.

And the handling of nulls drive me crazy! Yes, theoretically it must have sounded great when someone said, "Hey, if null means unknown, then adding an unknown value to a known value should give an unknown value. After all, by definition, we have no idea what the unknown value is." Theoretically, absolutely true. In practice, if we have 10,000 customers and we know exactly how much money 9,999 owe us but there's some question about the amount owed by the last one, and management says, "What are our total accounts receivable?", yes, the mathematically correct answer is "I don't know". But the practical answer is "we calculate $4,327,287.42 but one account is in question so that number isn't exact". I'm sure management would much rather get a close if not certain number than a blank stare. But SQL insists on this mathemcatically pristine approach, so every operation you do, you have to add extra code to check for nulls and handle them special.

All that said, I'd still rather use SQL than some layer built on top of SQL, that just creates another whole set of things I need to learn, and then I have to know that ultimately this will be translated to SQL, and sometimes I can just trust it to do the translation correctly and efficiently, but when things get complex I can't, so now I have to know the extra layer, I still have to know SQL, and I have to know how it's going to translate to I can trick the layer into tricking SQL into doing the right thing. Arggh.

link|flag
1  
The whole relational database idea was the product of ivory tower blue-skyers. Early relational databases had horrible performance compared to the then-current hierarchical databases, and took a long time to get established. The power of the abstraction was such that hierarchical databases are essentially a thing of the past (not that there aren't likely IMS and CODASYL databases out there still). It had to have worked very, very well. – David Thornley Oct 29 at 15:39
show 5 more comments
vote up 0 vote down

I don't dislike SQL, but I also don't want to have to write it as part of what I am developing. The DAL is not about speed to market - actually, I have never thought that there would be a DAL implementation that would be faster than direct queries from the code. But the goal of the DAL is to abstract. Abstraction comes at a cost, and here it is that it will take longer to implement.

The benefits are huge, though. Writing native tests around the code, using expressive classes, strongly typed datasets, etc. We use a "DAL" of sorts, which is a pure DDD implementation using Generics in C#. So we have generic repositories, unit of work implementations (code based transactions), and logical separation. We can do things like mock out our datasets with little effort and actually develop ahead of database implementations. There was an upfront cost in building such a framework, but it is very nice that business logic is the star of the show again. We consume data as a resource now, and deal with it in the language we are natively using in the code. An added benefit of this approach is the clear separation it provides. I no longer see a database query in a web page, for example. Yes, that page needs data. Yes, the database is involved. But now, no matter where I am pulling data from, there is one (and only one) place to go into the code and find it. Maybe not a big deal on smaller projects, but when you have hundreds of pages in a site or dozens of windows in a desktop application, you truly can appreciate it.

As a developer, I was hired to implement the requirements of the business using my logical and analytical skills - and our framework implementation allows for me to be more productive now. As a manager, I would rather have my developers using their logical and analytical skills to solve problems than to write SQL. The fact that we can build an entire application that uses the database without having the database until closer to the end of the development cycle is a beautiful thing. It isn't meant as a knock against database professionals. Sometimes a database implementation is more complex than the solution. SQL (and in our case, Views and Stored Procs, specifically) are an abstraction point where code can consume data as a service. In shops where there is a definite separation between the data and development teams, this helps to eliminate sitting in a holding pattern waiting for database implementation and changes. Developers can focus on the problem domain without hovering over a DBA and the DBA can focus on the correct implementation without a developer needing it right now.

link|flag
show 1 more comment
vote up 2 vote down

If you haven't used SQL too much, I think the major problem is the lack of good developer tools.

If you have lots of experience with SQL, you will have, at one point or another, been frustrated by the lack of control over the execution plan. This is an inherent problem in the way SQL was specified to the vendors. I think SQL needs to become a more robust language to truly harness the underlying technology (which is very powerful).

link|flag
vote up 38 vote down

Aside from everything that was said, a technology doesn't have to be bad to make an abstraction layer valuable.

If you're doing a very simple script or application, you can afford to mix SQL calls in your code wherever you like. However, if you're doing a complex system, isolating the database calls in separate module(s) is a good practice and so it is isolating your SQL code. It improves your code's readability, maintainability and testability. It allows you to quickly adapt your system to changes in the database model without breaking up all the high level stuff, etc.

SQL is great. Abstraction layers over it makes it even greater!

link|flag
5  
Very diplomatic! (And true, to boot!) – joseph.ferris Oct 29 at 13:45
1  
Maybe so, Steven, but in terms of the application it performs a low level function (even if it does it in an extremely high level way). No matter what crazy transformations you do at the database level, at the end of the day it is a glorified getter and setter. Or you could look at it the opposite way, in that it is too high level to be mixed in with the application and must be sequestered and considered separately. In any case, keeping the SQL outside of the main application code has very tangible benefits in terms of readability and refactoring. – Dereleased Oct 29 at 18:11
show 1 more comment
vote up 0 vote down

SQL isn't a bad thing. The layers use it to get data just like you would. They give you safe datatyping and the ability to deal with items as objects instead of raw text. If you did not use an abstration layer that is fine but you will end up creating your own, even if it is not as robust as a product dedicated to that.

link|flag
vote up 5 vote down

I'm a huge ORM advocate and I still believe that SQL is very useful, although it's certainly possible to do terrible things with it (just like anything else). .

I look at SQL as a super-efficient language that does not have code re-use or maintainability/refactoring as priorities.

So lightning fast processing is the priority. And that's acceptable. You just have to be aware of the trade-offs, which to me are considerable.

From an aesthetic point of view, as a language I feel that it is lacking some things since it doesn't have OO concepts and so on -- it feels like very old school procedural code to me. But it's far and away the fastest way to do certain things, and that's a powerful niche!

link|flag
vote up 23 vote down

SQL gets badmouthed from several sources:

  • Programmers who are not comfortable with anything but an imperative language.
  • Consultants who have to deal with many incompatible SQL-based products on a daily basis
  • Nonrelational database vendors trying to break the stranglehold of relational database vendors on the market
  • Relational database experts like Chris Date who view current implementations of SQL as insufficient

If you stick to one DBMS product, then I definitely agree that SQL DBs are more versatile and of higher quality than their competition, at least until you hit a scalability barrier intrinsic in the model. But are you really trying to write the next Twitter, or are you just trying to keep some accounting data organized and consistent?

Criticism of SQL is often a standin for criticisms of RDBMSes. What critics of RDBMSes seem not to understand is that they solve a huge class of computing problems quite well, and that they are here to make our lives easier, not harder.

If they were serious about criticizing SQL itself, they'd back efforts like Tutorial D and Dataphor.

link|flag
5  
Regarding the first point about programmers not being comfortable with anything but an imperative language. It'll be interesting over the next few years to see if/how the resurgence of functional programming makes any difference to this. There's a lot of hype at the moment over languages like Haskell, F# and Scala making developers that much more productive. This type of "mathematical" thinking for programmers is very similar to the the knowledge of relational algebra and tuple relational calculus that SQL pre-supposes. Maybe there will be a resurgence of native SQL set-based thinking in time! – Trevor Tippins Oct 29 at 16:16
show 1 more comment
vote up 2 vote down

Living with pure SQL can really be a maintenance hell. For me the greatest advantage of ORMs is the ability to safely refactor code without tedious "DB refactoring" procedures. There are good unit testing frameworks and refactoring tools for OO languages, but I yet have to see Resharper's counterpart for SQL, for example.

Still all DALs have SQL behind the scenes, and still you need to know it to understand what's happening to your database, but daily working with good abstraction layer becomes easier.

link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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