DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Data Engineering
  3. Databases
  4. 3 Tips to Write SQL Queries That Are Easier to Read and Modify

3 Tips to Write SQL Queries That Are Easier to Read and Modify

3 practice tips to write SQL queries which are easier to read and modify even after six month and one year. Use this tips to write professional quality SQL.

Javin Paul user avatar by
Javin Paul
·
Jul. 16, 20 · Opinion
Like (6)
Save
Tweet
Share
5.48K Views

Join the DZone community and get the full member experience.

Join For Free

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 for interface than implementation, but, unfortunately only a few developers able to master these techniques.

The 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 queries 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 the past, their pros and cons and what I think is the best way to write SQL queries.

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.

By the way, I expect that you are familiar with SQL and definitely know how to write queries. I expect that you have used different SQL clauses like SELECT, INSERT, UPDATE, DELETE and 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 check out this list of free SQL courses for programmers and developers. 

Anyway, let's examine 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

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

Improvement:

  • The 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 a clause is on the same line, which means excluding them by commenting is not that easy

SQL Query Version 3.0 (Best)

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 on one of the conditions as shown below:

 

If you notice there is a subtle difference, I have added WHERE 1=1 which means you can comment on any condition without commenting WHERE clause which was not possible in an earlier version of the query.

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

That's all about how to write a SQL query that 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 are your thoughts? Do 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 if 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 the whole course.

Database sql MySQL

Published at DZone with permission of Javin Paul, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Simulating and Troubleshooting StackOverflowError in Kotlin
  • How to Cut the Release Inspection Time From 4 Days to 4 Hours
  • 5 Challenges in Building Distributed Systems
  • Application Assessment Questions for Migration Projects

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: