Skip to content
Advertisement

Measuring the complexity of SQL statements

The complexity of methods in most programming languages can be measured in cyclomatic complexity with static source code analyzers. Is there a similar metric for measuring the complexity of a SQL query?

It is simple enough to measure the time it takes a query to return, but what if I just want to be able to quantify how complicated a query is?

[Edit/Note]
While getting the execution plan is useful, that is not necessarily what I am trying to identify in this case. I am not looking for how difficult it is for the server to execute the query, I am looking for a metric that identifies how difficult it was for the developer to write the query, and how likely it is to contain a defect.

[Edit/Note 2]
Admittedly, there are times when measuring complexity is not useful, but there are also times when it is. For a further discussion on that topic, see this question.

Advertisement

Answer

Common measures of software complexity include Cyclomatic Complexity (a measure of how complicated the control flow is) and Halstead complexity (a measure of complex the arithmetic is).

The “control flow” in a SQL query is best related to “and” and “or” operators in query.

The “computational complexity” is best related to operators such as SUM or implicit JOINS.

Once you’ve decided how to categorize each unit of syntax of a SQL query as to whether it is “control flow” or “computation”, you can straightforwardly compute Cyclomatic or Halstead measures.

What the SQL optimizer does to queries I think is absolutely irrelevant. The purpose of complexity measures is to characterize how hard is to for a person to understand the query, not how how efficiently it can be evaluated.

Similarly, what the DDL says or whether views are involved or not shouldn’t be included in such complexity measures. The assumption behind these metrics is that the complexity of machinery inside a used-abstraction isn’t interesting when you simply invoke it, because presumably that abstraction does something well understood by the coder. This is why Halstead and Cyclomatic measures don’t include called subroutines in their counting, and I think you can make a good case that views and DDL information are those “invoked” abstractractions.

Finally, how perfectly right or how perfectly wrong these complexity numbers are doesn’t matter much, as long they reflect some truth about complexity and you can compare them relative to one another. That way you can choose which SQL fragments are the most complex, thus sort them all, and focus your testing attention on the most complicated ones.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement