How to write SQL queries which are easier to read?

javinpaul - Sep 19 '19 - - Dev Community

Disclosure: This post includes affiliate links; I may receive compensation if you purchase products or services from the different links provided in this article.

There is no doubt that writing code is more art than science and every coder cannot write beautiful code which is both readable and maintainable, even with the experience. Yes, it's blunt and hard but it's mostly true.

In general, coding improves with experience but only when you learn the art of coding like favoring composition over inheritance or coding forinterface than implementation, but, unfortunately only a few developers able to master these techniques.

Same applies to SQL queries. The way you structure your query, the way you write it goes a long way to communicate your intent to the fellow developer, DBA and even yourself after a few months.

Whenever I see SQL queries on emails from different developers, I can see the stark difference in their writing style. Some developers and DBAs write it so neatly and indent their query such that you can easily spot key details like which columns you are extracting, and from which table, and what are joining or filtering conditions.

Since in real-life projects, SQL queries are hardly one-liner, learning the right way to write complex SQL query makes a lot of difference; especially when you share that query to someone for review or execution. It also helps when you read it yourself later as I said, after a few months.

The problem is there are many books and courses to teach you SQL like what is a table, different SQL commands but there are very few (like The Complete SQL Bootcamp by Josh Portilla) which focus on writing proper SQL queries.

In this article, I am going to show you a couple of styles which I have tried in past, their pros and cons and what I think is the best way to write SQL query.

Unless you have a good reason not to use my style e.g. you have a better style or you want to stick with the style used in your project (consistency overrules everything) there is no reason not to use it.

Btw, I expect that you are familiar with SQL and definitely know how to write query. I expect that you have used different SQL clauses like SELECT, INSERT, UPDATE, DELETEand understand their meaning in a SQL query. If you are not, it's better you gain some experience with SQL by joining some of my recommended courses like:

  1. Learn SQL by CodeCademy
  2. Introduction to SQL by Jon Flanders
  3. The Complete SQL Bootcamp by Josh Portilla, a Data Scientist, on Udemy or
  4. SQL for Newbs: Data Analysis for Beginners by David Kim and Peter Sefton's course on Udemy.

They all are great courses and teach you SQL basics, but, if you need some free alternatives you can also checkout this list of free SQL courses for programmers and developers.

Anyway, let's examing a couple of ways to write SQL query and find out which one is the best way to express intent in quick time:

SQL Query Version 1.0

How to write sql query which is easier to read

Pros:

The mixed case was introduced to separate keyword from column and table names like writing SELECT in a capital case and writing Employee in as it is, but given you are not consistent like SELECT is in caps but from is in small, there is no benefit of using that style.

Cons:

1) Mixed case.
2) The whole query is written on one line which gets unreadable as soon the number of tables and columns increases.
3) No flexibility in adding a new condition or running without an existing condition

SQL Query Version 2.0

SQL query best practices

Improvement:

1) SQL query is divided into multiple lines which make it more readable, yes, that small thing makes a huge difference.

Problems

1) Mixed case
2) All conditions on WHERE clause is on the same line, which means excluding them by commenting is not that easy.

SQL Query Version 3.0 (Best)

most readable sql query

Pros

1) Dividing SQL queries into multiple lines makes it more readable.
2) Using proper indentation makes it easy to spot the source of data i.e. tables and joins
3) Having conditions on separate lines allow you to run the query by commenting one of the conditions as shown below:

best sql query for programmers

Btw, if you notice there is a subtle differnece, I have added WHERE 1=1 which means you can comment any condition without commenting WHERE clause which was not possible in earlier version of query.

If you are a fan of CAPITAL case for keywords, you can also write the same SQL query as shown below, the rules are same but just capital letters for keywords.

That's all about how to write a SQL query which is readable and more maintainable. Feel free to give your opinion on what do you think of this indentation or styling of SQL queries.

It's a simpler technique but very powerful and goes a long way on improving the readability of your complex SQL queries involving multiple joins as shown in my earlier example.

If you like you can also use various SQL formatters online but I suggest you learn a style and stick with it, rather relying on formatters.

Thanks for reading this article and let us know how do you write SQL queries? which style you use, or you have your own style? If you are a beginner and learning SQL, you may also find my list of free SQL courses and books helpful.

So, what's your thoughts? Does these points make sense? Which SQL style are you using? And, can you make it even more readable and maintainable?

Further Learning
Introduction to SQL
The Complete SQL Bootcamp
SQL for Newbs: Data Analysis for Beginners

Other SQL and Database Articles you may like

  • 5 Websites to learn SQL for FREE (websites)
  • 5 Free Courses to Learn MySQL database (courses)
  • 5 Free Courses to learn Database and SQL (courses)
  • 5 Books to Learn SQL Better (books)
  • How to join more than two tables in a single query (article)
  • Difference between WHERE and HAVING clause (answer)
  • 10 SQL queries from Interviews (queries)
  • Top 5 SQL books for Advanced Programmers (books)
  • Difference between SQL, T-SQL, and PL/SQL? (answer)
  • Top 5 Online Courses to Learn SQL and Database (courses)

Thanks for reading this article and let me know how do you write SQL queries? which style you use, or you have your own style?

P. S. - If you are looking for a free course to start learning SQL and Database basics then I suggest you go through Introduction to Databases and SQL Querying course on Udemy. It's completely free, all you have to do is create a Udemy account and you can access whole course.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .