vote up 82 vote down star
135

I am intending this to be an entry which is a resource for anyone to find out about aspects of sql that they may have not run into yet, so that the ideas can be stolen and used in their own programming. With that in mind...

What sql tricks have you personally used, that made it possible for you to do less actual real world programming to get things done?

[EDIT]

A fruitful area of discussion would be specific techniques that allow you to do operations on the database side, that make it unnecessary to pull the data back to the program, then update/insert it back to the database.

[EDIT]

The bounty button showed up today. The question had 18 upvotes + 9 upvotes for my answer. So that's roughly 270 rep points. I decided to double it, so 540 was the value. The slider bar that lets you specify the value, only goes up to 500, so 500 it is.

We have some pretty good ideas in here. I am hoping the promise of the bounty will bring some more entries in. I expect to pick one before the week expires.

I recommend that you flesh out your answer where possible to make it easy for the reader to understand the value that your technique provides. Visual examples work wonders. The winning answer will have good examples.

My thanks to everyone who shared an idea with the rest of us.

flag
show 13 more comments

85 Answers

prev 1 2 3
vote up 0 vote down

What I call the sum case construct. It's a conditional count. A decent example of it is this answer to a question.

link|flag
vote up 2 vote down

Using the WITH statement together with ROW_NUMBER function to perform a search and at the same time sort the results by a required field. Consider the following query, for example (it is a part of stored procedure):

    DECLARE @SortResults int;

SELECT @SortResults = 
	CASE @Column WHEN 0 THEN -- sort by Receipt Number
		CASE @SortOrder WHEN 1 THEN 0 -- sort Ascending
						WHEN 2 THEN 1 -- sort Descending
		END
				WHEN 1 THEN -- sort by Payer Name
		CASE @SortOrder WHEN 1 THEN 2 -- sort Ascending
						WHEN 2 THEN 3 -- sort Descending
		END
				WHEN 2 THEN -- sort by Date/Time paid
		CASE @SortOrder WHEN 1 THEN 4 -- sort Ascending
						WHEN 2 THEN 5 -- sort Descending
		END
				WHEN 3 THEN -- sort by Amount
		CASE @SortOrder WHEN 1 THEN 4 -- sort Ascending
						WHEN 2 THEN 5 -- sort Descending
		END
	END;

	WITH SelectedReceipts AS
	(
		SELECT TOP (@End) Receipt.*,

		CASE @SortResults
			WHEN 0 THEN ROW_NUMBER() OVER (ORDER BY Receipt.ReceiptID)
			WHEN 1 THEN ROW_NUMBER() OVER (ORDER BY Receipt.ReceiptID DESC)
			WHEN 2 THEN ROW_NUMBER() OVER (ORDER BY Receipt.PayerName)
			WHEN 3 THEN ROW_NUMBER() OVER (ORDER BY Receipt.PayerName DESC)
			WHEN 4 THEN ROW_NUMBER() OVER (ORDER BY Receipt.DatePaid)
			WHEN 5 THEN ROW_NUMBER() OVER (ORDER BY Receipt.DatePaid DESC)
			WHEN 6 THEN ROW_NUMBER() OVER (ORDER BY Receipt.ReceiptTotal)
			WHEN 7 THEN ROW_NUMBER() OVER (ORDER BY Receipt.ReceiptTotal DESC)
		END

		AS RowNumber

		FROM Receipt

		WHERE
		( Receipt.ReceiptID LIKE ''%'' + @SearchString + ''%'' )

		ORDER BY RowNumber
	)

	SELECT * FROM SelectedReceipts
	WHERE RowNumber BETWEEN @Start AND @End
link|flag
show 3 more comments
vote up 0 vote down

Write set-based queries instead of cursors. (shorter code and faster - a win all around!) Drag the table names and field names from the object browser (hours of mistyping avoided) Learn to use joins in update and delete statments.

link|flag
vote up 1 vote down

There are a few things that can be done to minimize the amount of code that needs to be written and insulate you from code changes when the database schema changes (it will).

So, in no particular order:

  1. DRY up your schema - get it into third normal form
  2. DML and Selects can come via views in your client code
    • When your underlying tables changes, update the view
    • Use INSTEAD OF triggers to intercept DML calls to the view - then update the necessary tables
  3. Build an external data dictionary containing the structure of your database - build the DDL from the dictionary. When you change database products, write a new parser to build the DDL for your specific server type.
  4. Use constraints, and check for them in your code. The database that only has one piece of client code interacting with it today, will have two tomorrow (and three the next day).
link|flag
vote up 4 vote down

Aliasing tables and joining a table with it self multiple times:

select pf1.PageID, pf1.value as FirstName, pf2.value as LastName
from PageFields pf1, PageFields pf2
where pf1.PageID = 42
and   pf2.PageID = 42
and   pf1.FieldName = 'FirstName'
and   pf2.FieldName = 'LastName'

Edit: If i have the table PageFields with rows:

id | PageID | FieldName | Value 
.. | ...    | ...       | ... 
17 | 42     | LastName  | Dent
.. | ...    | ...       | ... 
23 | 42     | FirstName | Arthur
.. | ...    | ...       | ...

Then the above SQL would return:

42, 'Arthur', 'Dent'
link|flag
show 2 more comments
vote up 6 vote down

Never normalize a database to the point that writing a query becomes near impossible.

Example: http://stackoverflow.com/questions/184641

link|flag
show 2 more comments
vote up 0 vote down

Using the INFORMATION_SCHEMA to generate a bunch of very similar queries. Say I want to build some dynamic SQL that recreates a set of views. I can use the INFORMATION_SCHEMA to find the tables that I want to use, the columns in those tables etc. Then I can build new views and so forth with the results of that query. If I need to re-generate those views/procs I'll just re-run the generator script. Used this technique to re-build 8 complex views in about 20 secs.

link|flag
show 1 more comment
vote up 2 vote down

SQL's Pivot command. Learn it. Live it.

link|flag
1  
Can you add a simple example so that other readers have something to visualize? – EvilTeach Jan 30 at 2:56
show 4 more comments
vote up 0 vote down

denormalize when performance is a big issue.

link|flag
show 4 more comments
vote up 1 vote down

Three words... UPDATE FROM WHERE

link|flag
1  
Humm. what do you mean by that? Can you show an example? – EvilTeach Jan 28 at 18:04
vote up 1 vote down

Make sure you know what SELECT can do.

I used to spend hours writing dumb queries that SQL does out of the box (eg NOT IN and HAVING spring to mind)

link|flag
show 1 more comment
vote up 53 vote down

Writing "where 1=1...." that way you don't have to keep track of where to put an AND into the statement you're generating.

link|flag
1  
Assuming you're putting line breaks in your query for readability, the FIRST condition starts with WHERE, while all the others will start the line with AND. Using 1=1 allows all the queries you care about to be interchangeable (and easy to comment out with -- at the beginnning of the line). – BQ Jan 28 at 19:05
2  
Humm. I wonder if the 1 = 1 clause has a execution cost. – EvilTeach Jan 29 at 1:23
2  
No, it doesn't SQL server will constant evaluate before generating execution plans. – Joshua Jan 29 at 4:49
1  
you can do just WHERE 1 – Darth Jul 20 at 14:59
show 8 more comments
vote up 11 vote down

The two biggest things I found were helpful were doing recursive queries in Oracle using the CONNECT BY syntax. This saves trying to write a tool to do the query for you. That, and using the new windowing functions to perform various calculations over groups of data.

Recursive Hierarchical Query Example (note: only works with Oracle; you can do something similar in other databases that support recursive SQL, cf. book I mention below):

Assume you have a table, testtree, in a database that manages Quality Assurance efforts for a software product you are developing, that has categories and tests attached to those categories:

CREATE TABLE testtree(
   id INTEGER PRIMARY KEY,
   parentid  INTEGER FOREIGN KEY REFERENCES testtree(id),
   categoryname STRING,
   testlocation FILEPATH);

Example Data in table:
id|parentid|categoryname|testlocation
-------------------------------------
00|NULL|ROOT|NULL
01|00|Frobjit 1.0|NULL
02|01|Regression|NULL
03|02|test1 - startup tests|/src/frobjit/unit_tests/startup.test
04|02|test2 - closing tests|/src/frobjit/unit_tests/closing.test
05|02|test3 - functionality test|/src/frobjit/unit_tests/functionality.test
06|01|Functional|NULL
07|06|Master Grand Functional Test Plan|/src/frobjit/unit_tests/grand.test
08|00|Whirlgig 2.5|NULL
09|08|Functional|NULL
10|09|functional-test-1|/src/whirlgig/unit_tests/test1.test
(...)

I hope you get the idea of what's going on in the above snippet. Basically, there is a tree structure being described in the above database; you have a root node, with a Frobjit 1.0 and Whirlgig 2.5 node being described beneath it, with Regression and Functional nodes beneath Frobjit, and a Functional node beneath Whirlgig, all the way down to the leaf nodes, which contain filepaths to unit tests.

Suppose you want to get the filepaths of all unit tests for Frobjit 1.0. To query on this database, use the following query in Oracle:

SELECT testlocation
   FROM testtree
START WITH categoryname = 'Frobjit 1.0'
CONNECT BY PRIOR id=parentid;

A good book that explains a LOT of techniques to reduce programming time is Anthony Mollinaro's SQL Cookbook.

link|flag
show 4 more comments
vote up 17 vote down

When developing pages in ASP.NET that need to utilize a GridView control, I like to craft the query with user-friendly field aliases. That way, I can simply set the GridView.AutoGenerateColumns property to true, and not spend time matching HeaderText properties to columns.

select
    MyDateCol 'The Date',
    MyUserNameCol 'User name'
from MyTable
link|flag
show 5 more comments
vote up 66 vote down

I think the most useful one that I have used, is the WITH statement.

It allows subquery reuse, which makes it possible to write with a single query invocation, what normally would be two or more invocations, and the use of a temporary table.

The with statement will create inline views, or use a temporary table as needed in Oracle.

Here is a silly example

WITH 
txssnInfo AS
(
    SELECT SSN, 
           UPPER(LAST_NAME), 
           UPPER(FIRST_NAME), 
           TAXABLE_INCOME,          
           CHARITABLE_DONATIONS
    FROM IRS_MASTER_FILE
    WHERE STATE = 'TX'                 AND -- limit to texas
          TAXABLE_INCOME > 250000      AND -- is rich 
          CHARITABLE_DONATIONS > 5000      -- might donate too

),
doltishApplicants AS
(
    SELECT SSN, 
           SAT_SCORE,
           SUBMISSION_DATE
    FROM COLLEGE_ADMISSIONS
    WHERE SAT_SCORE < 100          -- Not as smart as some others.
),
todaysAdmissions AS
(
    SELECT doltishApplicants.SSN, 
           TRUNC(SUBMISSION_DATE)  SUBMIT_DATE, 
           LAST_NAME, FIRST_NAME, 
           TAXABLE_INCOME
    FROM txssnInfo,
         doltishApplicants
    WHERE txssnInfo.SSN = doltishApplicants.SSN

)
SELECT 'Dear ' || FIRST_NAME || 
       ' your admission to WhatsaMattaU has been accepted.'
FROM todaysAdmissions
WHERE SUBMIT_DATE = TRUNC(SYSDATE)    -- For stuff received today only
;

One of the other things I like about it, is that this form allows you to separate the filtering from the joining. As a result, you can frequently copy out the subqueries, and execute them stand alone to view the result set associated with them.

link|flag
3  
Great at recursion too! – Jas Panesar Jan 29 at 0:05
show 11 more comments
vote up 6 vote down

Take advantage of SQL's ability to output not just database data but concatinated text to generate more SQL or even Java code.

  • Generate insert statements
    • select 'insert .... values(' + col1 ... + ')' from persontypes
  • Generate the contents of an Enum from a table.
    • ...
  • Generate java Classes from table names
    • select 'public class ' + name + '{\n}' from sysobjects where...

EDIT: Don't forget that some databases can output XML which saves you lots of time reformatting output for client applications.

link|flag
show 2 more comments
vote up 8 vote down

This doesn't save "programming" time, per se, but sure can save a lot of time in general, if you're looking for a particular stored proc that you don't know the name of, or trying to find all stored procs where something is being modified, etc. A quick query for SQL Server to list stored procs that have a particular string somewhere within them.

SELECT ROUTINE_NAME, ROUTINE_DEFINITION 
FROM INFORMATION_SCHEMA.ROUTINES 
WHERE ROUTINE_DEFINITION LIKE '%foobar%' 
AND ROUTINE_TYPE='PROCEDURE'

Same for Oracle:

select name, text
from user_source u
where lower(u.text) like '%foobar%'
and type = 'PROCEDURE';
link|flag
show 2 more comments
vote up 41 vote down

My old office-mate was an extreme sql enthusiast. So whenever I would complain "Oh dear, this sql stuff is so hard, I don't think there's any way to solve this in sql, I'd better just loop over the data in C++, blah blah," he would jump in and do it for me.

link|flag
2  
Oh boy, I just spit out my coffee. That is funny. I call that working smarter not harder. – Cj Anderson Jan 28 at 16:15
1  
Meh. I tried this. Didn't work - my company's SQL guru is also really good at teaching it. – Erik Jan 28 at 23:26
4  
LOL! This is in the realm of "social hacking" instead of actually employing code to solve the problem yourself. – Bill Karwin Jan 30 at 17:48
2  
+1! The geek equivalent of "I bet this car can't do 120kph!" Great comments too. – j_random_hacker Feb 19 at 10:29
show 3 more comments
vote up 1 vote down

Way back, I wrote dynamic SQL in a C program that took a table as an argument. It would then access the database (Ingres in those days) to check the structure, and using a WHERE clause, load any matching row into a dynamic hash/array table.

From there, I would just lookup the indices to the values as I used them. It was pretty slick, and there was no other SQL code in the source (also it had a feature to be able to load a table directly into a tree).

The code was a bit slower than brute force, but it optimized the overall program because I could quickly do partitioning of the data in the code, instead of in the database.

Paul.

link|flag
vote up 5 vote down

This doesn't necessarily save you coding time, but this missing indexes query can save you the time of manually figuring out what indexes to create. It is also helpful because it shows actual usage of the indexes, rather than the usage you 'thought' would be common.

http://blogs.msdn.com/bartd/archive/2007/07/19/are-you-using-sql-s-missing-index-dmvs.aspx

link|flag
vote up 30 vote down

I like to use SQL to generate more SQL.

For example, I needed a query to count the number of items across specific categories, where each category is stored in its own table. I used the the following query against the master category table to generate the queries I needed (this is for Oracle):

select 'select '
    || chr(39) || trim(cd.authority) || chr(39) || ', ' 
    || chr(39) || trim(category) || chr(39) || ', '
    || 'count (*) from ' || trim(table_name) || ';'
from   category_table_name ctn
     , category_definition cd
where  ctn.category_id = cd.category_id
and    cd.authority = 'DEFAULT'
and    category in ( 'CATEGORY 1'
                   , 'CATEGORY 2'
                   ...
                   , 'CATEGORY N'
                   )
order by cd.authority
       , category;

This generated a file of SELECT queries that I could then run:

select 'DEFAULT', 'CATEGORY 1', count (*) from TABLE1; 
select 'DEFAULT', 'CATEGORY 2', count (*) from TABLE4; 
...
select 'DEFAULT', 'CATEGORY N', count (*) from TABLE921;
link|flag
1  
Yo dawg I herd u like database so I put sql in ur sql so u can select while you select – Haoest Feb 3 at 18:23
1  
Nice for doing something "meta", e.g. en/disabling constraints as EvilTeach suggested. But if you need to use this for querying data in your tables then your DB design is broken. In your case, items from all categories should be stored in a single table, using a field to identify the category. – j_random_hacker Feb 19 at 10:38
show 6 more comments
vote up 18 vote down

I have found it very useful to interact with the database through views, which can be adjusted without any changes to code (except, of course SQL code).

link|flag
3  
I'm less happy with this suggestion. Too often I end up tracing down performance issues in parallel through multiple execution units (views). And if I change a view to benefit my query, what else might it screw up? I don't like creating coupling among execution optimizations through views. – le dorfier Jan 28 at 23:42
show 4 more comments
vote up 37 vote down

Hi, I personally use the CASE statement a lot. Here are some links on it, but I also suggest googling.

4 guys from Rolla

Microsoft technet

Quick example:

SELECT FirstName, LastName, Salary, DOB, CASE Gender 
                                            WHEN 'M' THEN 'Male' 
                                            WHEN 'F' THEN 'Female' 
                                         END 
FROM Employees
link|flag
show 7 more comments
vote up 1 vote down

Using Oracle hints for a select last effective date query.

For instance, exchange rates for a currenсy change several times a day and there is no regularity in it. Efficient rate for a given moment is the rate published last, but before that moment.

You need to select efficient exchange rate for each transaction from a table:

CREATE TABLE transactions (xid NUMBER, xsum FLOAT, xdate DATE, xcurrency NUMBER);
CREATE TABLE rates (rcurrency NUMBER, rdate DATE, rrate FLOAT);
CREATE UNIQUE INDEX ux_rate_currency_date ON rates (rcurrency, rdate);

SELECT  (
    SELECT	/*+ INDEX_DESC (r ux_rate_currency_date) */
    	rrate
    FROM	rates r
    WHERE	r.rcurrency = x.xcurrency
    	AND r.rdate <= x.xdate
    	AND rownum = 1
    ) AS eff_rate, xsum, date
FROM    transactions x

This is not recommended by Oracle, as you rely on index to enforce SELECT order.

But you cannot pass an argument to a double-nested subquery, and have to do this trick.

P.S. It actually works in a production database.

link|flag
show 2 more comments
vote up 20 vote down

Besides normalization (the obvious one), setting my foreign key on update and on delete clauses correctly saves me time, particularly using ON DELETE SET NULL and ON UPDATE CASCADE

link|flag
1  
They are essentially automatic triggers. on update cascade watches the other table and if its primary key changes, it updates any foreign keys pointing to it as well. – R. Bemrose Jan 28 at 18:04
2  
I can't believe this got voted up so many times! DELETE CASCADE is not good IMO; you are not in full control of deletion behaviour. UPDATE CASCADE should rarely be required if you use surrogate keys. – Mitch Wheat Jan 28 at 23:39
show 7 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

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