What SQL coding standard do you follow? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:03:39Zhttp://stackoverflow.com/feeds/question/522356http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow14What SQL coding standard do you follow?sjthebat2009-02-06T21:56:51Z2009-04-08T15:42:34Z
<p>Is there any widely used SQL coding standard out there? SQL is little bit different from C/C++ type of programming languages. Really don't know how to best format it for readability.</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522377#5223775Answer by Rob Prouse for What SQL coding standard do you follow?Rob Prouse2009-02-06T22:01:04Z2009-02-06T22:01:04Z<p>If you google, there are plenty of coding standards out there. For example,</p>
<p><a href="http://www.nyx.net/~bwunder/dbChangeControl/standard.htm" rel="nofollow">Database Coding Standard and Guideline</a></p>
<p>and </p>
<p><a href="http://blog.sqlauthority.com/2007/06/06/sql-server-database-coding-standards-and-guidelines-complete-list-download/" rel="nofollow">SQL SERVER Database Coding Standards and Guidelines Complete List</a></p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522378#5223781Answer by rwarren for What SQL coding standard do you follow?rwarren2009-02-06T22:01:10Z2009-02-06T22:01:10Z<p>I generally keep very little per line, ie:</p>
<pre><code>select
col1,
col2,
col3
from
some_table tabl1
where
col1 = 'some'
and
(
col2 = 'condition'
or col2 = 'other'
)
</code></pre>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522381#5223813Answer by Ryan Guill for What SQL coding standard do you follow?Ryan Guill2009-02-06T22:01:34Z2009-02-06T22:01:34Z<p>I like the comma preceding way:</p>
<pre><code>SELECT
column1
, column2
, column3
, COALESCE(column4,'foo') column4
FROM
tablename
WHERE
column1 = 'bar'
ORDER BY
column1
, column2
</code></pre>
<p>it makes it the easiest to read and debug in my opinion.</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522385#5223851Answer by IronGoofy for What SQL coding standard do you follow?IronGoofy2009-02-06T22:01:59Z2009-02-06T22:01:59Z<p>Google for sql pretty printer or look <a href="http://www.wangz.net/sqlpp.php" rel="nofollow">here</a>. I haven't tried it out myself, but it gives you a good start. Most commercial tools like Toad have a "formatting" option which helps, too.</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522393#5223931Answer by Patrick Harrington for What SQL coding standard do you follow?Patrick Harrington2009-02-06T22:03:55Z2009-02-06T22:03:55Z<p>Play around with <a href="http://www.sqlinform.com" rel="nofollow">www.sqlinform.com</a> - I recommend using the <a href="http://stackoverflow.com/questions/334201/why-isnt-sql-ansi-92-standard-better-adopted-over-ansi-89">ANSI-92 standard</a>, and then pretty it up with that site.</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522410#52241011Answer by DJ for What SQL coding standard do you follow?DJ2009-02-06T22:07:04Z2009-02-06T22:52:29Z<p>Wouldn't call it coding standard - more like coding style</p>
<pre><code>SELECT
T1.col1,
T1.col2,
T2.col3
FROM
table1 T1
INNER JOIN ON Table2 T2 ON T1.ID = T2.ID
WHERE
T1.col1 = 'xxx'
AND T2.Col3 = 'yyy'
</code></pre>
<ul>
<li>capitalize reserved words</li>
<li>main keywords on new line</li>
<li>can't get used to commas before columns</li>
<li>always use short meaningful table aliases</li>
<li>prefix views with v</li>
<li>prefix stored procs with sp (however don't use "sp_" which is reserved for built in procs)</li>
<li>don't prefix tables</li>
<li>table names singular</li>
</ul>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522425#5224253Answer by Alex. S. for What SQL coding standard do you follow?Alex. S.2009-02-06T22:13:01Z2009-02-06T22:13:01Z<p>From a really very nice blog on PostgreSQL, but this topic is applicable in general:</p>
<p><a href="http://www.depesz.com/index.php/2009/01/04/maintainable-queries-my-point-of-view/" rel="nofollow">Maintainable queries - my point of view (depesz.com)</a></p>
<blockquote>
<p>...I decided that my priorities for writing maintainable queries:</p>
<ol>
<li><p>Avoid useless typing.</p></li>
<li><p>Use aliases for tables/views.
Always. And make them sensible
aliases.</p></li>
<li><p>Indent code in some way.</p></li>
<li><p>Avoid quotations (yes, this is why I
hate Django)</p></li>
<li><p>Use join syntax</p></li>
</ol>
</blockquote>
<p>I do agree with capitalization of reserved words and every other identifier, except my own.</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522448#5224483Answer by ZombieSheep for What SQL coding standard do you follow?ZombieSheep2009-02-06T22:19:08Z2009-02-06T22:19:08Z<p>I personally don't like to prefix a stored procedure name with sp_ - it is redundant, IMO. Instead, I like to prefix them with a "unit of functionality" identifier. e.g. I'll call the sprocs to deal with orders order_Save, order_GetById, order_GetByCustomer, etc. It keeps them all logically grouped in management studio and makes it harder to pick the wrong one. (GetOrderByProduct, GetCustomerById, etc...)</p>
<p>Of course, it is personal preference, other people may prefer to have all the Get sprocs together, all the Save ones, etc.</p>
<p>Just my 2c.</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522565#5225651Answer by Mr AJL for What SQL coding standard do you follow?Mr AJL2009-02-06T22:48:32Z2009-02-06T23:02:34Z<pre><code>SELECT c.id
, c.name
, c.folder
, cs.num_users active_members
, cs.num_videos
FROM campaign c
JOIN campaign_stats cs
ON cs.campaign_id = c.id
JOIN (SELECT _c.id
, _c.name
FROM campaign _c
WHERE _c.type = 9) t_c
ON t_c.id = c.id
WHERE c.id IN (1,2,3)
AND cs.num_videos > 10
</code></pre>
<p>This works pretty good for us.</p>
<p>This actual query doesn't make much sense since I tried to build it quickly as an example... but that's not the point.</p>
<ul>
<li>t_c stands for category table sub-query or "temp category".</li>
<li>_underscoring of stuff inside sub-queries.</li>
<li>alias column names to make sense in the context of the query. e.g. "active_members" </li>
<li><p>putting commas at the beginning of the new lines makes it easier to build dynamic queries: </p>
<pre><code>$sql .= ", c.another_column"
</code></pre></li>
<li><p>everything else is straightforward.</p></li>
</ul>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522616#5226163Answer by SnapJag for What SQL coding standard do you follow?SnapJag2009-02-06T23:08:54Z2009-02-06T23:08:54Z<p>I know this is long, but bear with me, it's important. This question opened a cool can of worms. And if you don't like database blocks, read on.</p>
<p>And, before anyone thinks about knocking down my response, <em>please</em> see the following article and connected articles to it about locking, and recompiles; two of the most damaging resources hits on a SQL database.</p>
<p><strong><a href="http://support.microsoft.com/kb/263889" rel="nofollow">http://support.microsoft.com/kb/263889</a></strong></p>
<p>I can type pretty quickly, and I don't like to type any more than the next person. But the points below I follow extremely closely, even if it is more typing. So much that I've built my own SP apps to do it for me.</p>
<p>The points I bring up are really important! You might even say to yourself, "are you kidding, that's not an issue", well, then you didn't read the articles above. <strong>AND</strong>, it's totally moronic that M$ would put these points in as NOTEs. These issues to me should be BOLD and SCREAMING.</p>
<p>I also do a lot of coding to build my basic scripts using C# applications to speed up development and these practices are very sound (10 years worth) to make scripting SPs easier and especially faster.</p>
<p>There are more than this, but this is what I do for the first 60% of everything.</p>
<p><hr /></p>
<p><strong>Best practices</strong></p>
<ul>
<li>Use the brackets around objects, so the query engine excplicitly knows a field when it sees it</li>
<li>Use THE SAME CASE as table object names and field names</li>
<li>When calling SPs from application, use the fully qualified [dbo].[procName] with correct owner AND case. Not Kidding! Read the articles above!</li>
<li>Reference the owner of the object so security is explicitly known and doesn't have to be figured out</li>
<li>DON'T us "sp_" as this refers to system stored procs, and overhead</li>
<li>Use SET NOCOUNT ON and SET NOCOUNT OFF to eliminate the extra overhead to keep track of how many records are updated in the stored proc unless you need them. Normally, you don't and you can gain a huge increase in performance.</li>
</ul>
<p><strong>Preferences</strong></p>
<ul>
<li>Prefix stored procs with proc</li>
<li>Suffix every stored proc with SEL, UPD, DEL, INS (or SELECT, UPDATE, DELETE, INSERT)</li>
<li>Capitalize reserved words</li>
<li>Main keywords on new line (scripting)</li>
<li>Use commas before columns (scripting)</li>
<li>Prefix views with vw</li>
<li>Don't prefix tables</li>
<li>Table names singular</li>
<li>Add a suffix to the standard names like "_ByPK", "_OrderByLastName", or "_Top15Orders" for variations on the stock SP</li>
</ul>
<p><hr /></p>
<p>Select</p>
<blockquote>
<pre><code>CREATE PROC [dbo].[procTable_SEL]
AS
SET NOCOUNT ON
SELECT
[Column1] = T1.[col1]
, [Column2] = T1.[col2]
, [Column3] = T2.[col3]
FROM [dbo].[Table] T1
INNER JOIN ON [dbo].[Table2] T2 ON T1.ID = T2.ID
WHERE
T1.[col1] = 'xxx'
AND T2.[Col3] = 'yyy'
SET NOCOUNT OFF
GO
</code></pre>
</blockquote>
<p><hr /></p>
<p>Update</p>
<blockquote>
<pre><code>CREATE PROC [dbo].[procTable_UPD]
AS
SET NOCOUNT ON
UPDATE t1 SET
[Column1] = @Value1
, [Column2] = @Value2
, [Column3] = @Value3
FROM [dbo].[Table1] T1
INNER JOIN ON [dbo].[Table2] T2 ON T1.[ID] = T2.[ID]
WHERE
T1.[col1] = 'xxx'
AND T2.[Col3] = 'yyy'
SET NOCOUNT OFF
GO
</code></pre>
</blockquote>
<p><hr /></p>
<p>Insert</p>
<blockquote>
<pre><code>CREATE PROC [dbo].[procTable_INS]
AS
SET NOCOUNT ON
INSERT INTO [Table1] (
[Column1]
, [Column2]
, [Column3]
)
VALUES (
@Value1
, @Value2
, @Value3
)
SET NOCOUNT OFF
GO
</code></pre>
</blockquote>
<p>OR</p>
<blockquote>
<pre><code>CREATE PROC dbo.procTable_INS
AS
SET NOCOUNT ON
INSERT INTO [table1] (
[Column1]
, [Column2]
, [Column3]
)
SELECT
[Column1] = T1.col1
, [Column2] = T1.col2
, [Column3] = T2.col3
FROM dbo.Table1 T1
INNER JOIN ON Table2 T2 ON T1.ID = T2.ID
WHERE
T1.[col1] = 'xxx'
AND T2.[Col3] = 'yyy'
SET NOCOUNT OFF
GO
</code></pre>
</blockquote>
<p><hr /></p>
<p>Delete</p>
<blockquote>
<pre><code>CREATE PROC dbo.procTable_DEL
AS
SET NOCOUNT ON
DELETE
FROM [dbo].[Table1] T1
INNER JOIN ON [dbo].[Table2] T2 ON T1.[ID] = T2.[ID]
WHERE
T1.[col1] = 'xxx'
AND T2.[Col3] = 'yyy'
SET NOCOUNT OFF
GO
</code></pre>
</blockquote>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522729#5227291Answer by Bob The Janitor for What SQL coding standard do you follow?Bob The Janitor2009-02-07T00:07:49Z2009-02-07T00:07:49Z<p>Anything in blue is upper case SELECT, DELETE, GO, etc <br></p>
<p>Table names are singular like the table that holds our customers would be the customer table<br></p>
<p>Linking tables are tablename_to_tablename </p>
<p>use _ between works in table names and parameters </p>
<p>example </p>
<p>BEGIN<br/>
SELECT<br/>
Company.ID AS Company_ID,<br/>
Company.Client_Name,<br/>
Company.Website,<br/>
Office.Office_Name<br/>
FROM<br/>
Company_Office WITH(NOLOCK)<br/>
INNER JOIN Company WITH(NOLOCK) ON Company_Office.Company_ID = Company.ID<br/>
WHERE<br/>
END</p>
http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow/522762#5227620Answer by jandersson for What SQL coding standard do you follow?jandersson2009-02-07T00:20:35Z2009-02-07T00:20:35Z<pre><code>create table
#tempTable (
col1 int,
col2 int,
col3 int
)
insert into
#tempTable (
col1,
col2,
col3
)
select
col1,
col2,
col3
from
Table3
inner join Table2
on Table1.col1 = Table2.col2
where col1 = 5
select
col2,
case when col1 = 3
then 'something'
else 'somethingelse'
end
from #tempTable
where
col1 = 5
and (
col2 = 5
or col3 in (
select field
from Table2
where
somecol = 2
and othercol = 5
)
)
</code></pre>