Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
When should I use semicolons in SQL Server?

When we are writing a SQL script in T-SQL, should we end each statement with a semi-colon? Does semi-colon work like 'GO' keyword? As of now, I see that it doesn't really matter, but I would like to know which is the best practice?

share|improve this question
Thanks Kevin. Voting to close. – sorcerer Nov 29 '10 at 19:34

marked as duplicate by Kevin, Daniel DiPaolo, sorcerer, Andras Vass, OMG Ponies Nov 29 '10 at 19:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

It's good to get into the habit now because CTE/WITH and MERGE need it, as well as some Service broker stuff as mentioned in the other question. Of course, you could use ;WITH cTE AS ...

C# etc monkeys have been doing it for years.

It won't work with GO because it isn't a keyword. It's a directive for SSMS and other tools to break a larger script into batches.

share|improve this answer

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