Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Or: What is not a T-SQL statement?

Except to resolve ambiguity, T-SQL syntax does not require a semicolon to terminate a statement. Despite this, Itzik Ben-Gan recommends using a semicolon to terminate a T-SQL statement because it makes code cleaner, more readable, easier to maintain, and more portable.

I don't know a precise definition of what a valid T-SQL statement is, so I might be confused here. But as far as I know, a BEGIN...END block is a T-SQL statement, so should be terminated by a semicolon. For example:

IF OBJECT_ID('tempdb.dbo.#TempTable') IS NOT NULL
BEGIN
  DROP TABLE #TempTable;
END;

The code example in Microsoft's BEGIN...END documentation supports this conjecture:

USE AdventureWorks2008R2;
GO
BEGIN TRANSACTION;
GO
IF @@TRANCOUNT = 0
BEGIN
    SELECT FirstName, MiddleName 
    FROM Person.Person WHERE LastName = 'Adams';
    ROLLBACK TRANSACTION;
    PRINT N'Rolling back the transaction two times would cause an error.';
END;
ROLLBACK TRANSACTION;
PRINT N'Rolled back the transaction.';
GO
/*
Rolled back the tranaction.
*/

Itzik Ben-Gan contradicts this in the code example of Excercise 1-1 of T-SQL Fundamentals:

SET NOCOUNT ON;
USE TSQLFundamentals2008;
IF OBJECT_ID('dbo.Nums', 'U') IS NOT NULL DROP TABLE dbo.Nums;
CREATE TABLE dbo.Nums(n INT NOT NULL PRIMARY KEY);

DECLARE @i AS INT = 1;
BEGIN TRAN
  WHILE @i <= 100000
  BEGIN
    INSERT INTO dbo.Nums VALUES(@i);
    SET @i = @i + 1;
  END
COMMIT TRAN
SET NOCOUNT OFF;

Microsoft's Transact-SQL Syntax Conventions document states that the semicolon "will be required in a future version" of T-SQL.

Commenting on Microsoft's intention to require the semicolon in a future version of T-SQL, Itzik notes some exceptions that aren't supposed to be terminated:

So far it was a requirement to use a semicolon only in specific cases. Now it looks like the plan is to make it a required terminator for all* T-SQL statements in some future version of SQL Server.

(*) Naturally there are cases that aren’t supposed to be terminated with a semicolon; those include (but are not limited to):

  • BEGIN

  • BEGIN TRAN

  • IF

  • ELSE

  • WHILE

  • BEGIN TRY

  • END TRY

  • BEGIN CATCH

Itzik seems to be consistent with himself, but Microsoft itself does not follow his recommendations. Compare Microsoft's BEGIN TRANSACTION; and Itzik's BEGIN TRAN in the previous examples.

In the code I maintain, I have seen even the BEGIN keyword terminated by semicolon:

IF @HasWidget = 0x1
BEGIN;
  SELECT WidgetID
  FROM tbWidgets;
END;

I believe a T-SQL parser may consider the semicolon following the BEGIN keyword to terminate an empty statement rather than terminate the BEGIN keyword itself; I don't believe that BEGIN itself is a valid T-SQL statement.

This conjecture is supported by the fact that SQL Server 2008 successfully parses and executes the following query:

SELECT 0;;

It's so confusing because there is no widely available specification of the T-SQL language, like the Java Language Specification for Java, so nowhere is there a formal definition of a T-SQL statement.

Am I wrong? Does such a specification exist for T-SQL, and is it publicly available?

Otherwise, should just I believe what Itzik says?

share|improve this question
I've just come across this question looking for clarification on one of your exact points - whether semicolons should terminate BEGIN and BEGIN TRAN - but it seems that there is still no clear authority on the matter! – Alastair Aitchison May 7 '12 at 20:56
@AlastairAitchison If you're still interested, I asked Itzik to explain why he thinks BEGIN TRAN should not be terminated by a semicolon in a comment on his article. – Iain Elder Sep 30 '12 at 11:45

3 Answers

up vote 7 down vote accepted

T-SQL syntax does not require a semicolon to terminate a statement.

Actually, this is deprecated1. I can't remember for sure, but I think you can still get away with not using them in the upcoming Sql Server 2012, but the version after that will likely require a semi-colon for every statement. Using a semi-colon is also technically required by the ansi standard. The point is that now is the time to get in the habit of using one for every statement.

As a practical matter, I don't expect them to follow through with this directly. Rather, I expect the next version of the Sql Server to start issuing warnings instead of errors, perhaps the next two versions. This will help developers find and fix all the old non-compliant code. But that doesn't lessen the message: semi-colons are coming, and that right soon.

For a simple heuristic on when not to use a semi-colon, think of the code as if it were a procedural language that used curly brackets for blocks, like C/C++. Statements that would be paired with an opening (not closing) curly bracket if written in the procedure language should not get a semi-colon.

1It's almost all the way at the bottom of the page

share|improve this answer
+1; I didn't realize that not ending a statement with a semicolon was already deprecated in SQL Server 2008's version of T-SQL. – Iain Elder Nov 4 '11 at 10:37
And thanks for a link to the copy of ANSI SQL:92 standard. In section 4.22 it defines all the types of ANSI SQL statement. But still I can't find any official document that specifies Microsoft's T-SQL dialect. The MSDN Transact-SQL Reference is the closest thing I have found. – Iain Elder Nov 4 '11 at 10:48
I've accepted this answer because it gives simple and useful advice: always terminate with a semicolon. One question remains: why does Itzik say that BEGIN TRAN is an exception to this rule? I posed the question directly to him in a comment on his article. – Iain Elder Sep 30 '12 at 11:41
Is this still valid? This MSDN document indicates in future versions it will be required. ; Transact-SQL statement terminator.Although the semicolon is not required for most statements in this version of SQL Server, it will be required in a future version. msdn.microsoft.com/en-us/library/ms177563.aspx – StoneFX Apr 23 at 17:44

The only situation in which I frequently using a semicolon is when using Common Table Expressions via the WITH keyword - and only then because the WITH keyword must be preceded by a semicolon otherwise it returns an error. In those cases, I write

;WITH [exp]...

i.e. I precede the WITH with a semicolon, rather than terminate the previous statement.

Semicolon usage in SQL seems to be very rare; I occasionally see it after a stored procedure or function declaration by that is the exception rather than the rule. Of all the developers I've worked with I don't believe any have really used the semicolon in the way that you described.

Statements like

BEGIN;
    SELECT WidgetID
    FROM tbWidgets;    
END;  

are hard to understand - if BEGIN; is considered a statement independent of its corresponding END;, why is SELECT x not a valid statement independent of its corresponding FROM?

share|improve this answer
The statement preceding a common table expression in the batch must be terminated by a semicolon. If the common table expression begins the batch, then writing ;WITH is unnecessary. In any case, I think this looks ugly and unintuitive. – Iain Elder Nov 4 '11 at 10:26
SELECT x, assuming x is a column name, is not a valid statement because there is no FROM clause to define a table expression from which to select the column x. But the SELECT statement does not require a FROM clause in the general case: consider SELECT 0; and DECLARE @x INT = 0; SELECT @x;. In the second example, the scalar variable @x can be selected because it is previously defined. – Iain Elder Nov 4 '11 at 10:31

Coding is art and writing. Have some style that's all yours, but stay consistent within the scope of the project you're working on. If your team likes semicolons, then you like them too.

share|improve this answer
I believe the original database code that my team maintains was written for SQL Server 2000 by an application developer; over time, we have migrated to SQL Server 2008 and welcomed several experienced T-SQL writers on the team, but there is no consistency in the codebase. We have started making decisions about standards and style, which is why questions like this keep me up at night. – Iain Elder Nov 4 '11 at 2:50
If that's what you're guys biggest problem is then things must be awesome. It's just part of the job, lots of people and lots of history. Don't beat yourself up over refactoring, its what developers do most. Check out Crawford's book on design and refactoring. It definitely helped me keep focus. amazon.com/Refactoring-Improving-Design-Existing-Code/dp/… – Todd Baur Nov 4 '11 at 3:01
edit: I said Crawford but its written by Fowler...my mistake – Todd Baur Nov 4 '11 at 3:27
Thanks for the tip. I'll add that book to our library. I've been a professional developer for only a year, and a database developer for only three months, so being able to understand a complex stored procedure, let alone to refactor it, still intimidates me a little. – Iain Elder Nov 4 '11 at 3:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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