vote up 8 vote down star
8

Google search turns up some links to tsql questions. I was wondering what would SO experts would ask in an interview for TSQL.

flag

24% accept rate
Depends on who you are interviewing - a DBA, a developer, architect, etc... can you clarify the question please? – allgeek Apr 19 at 18:38
Is this really programming related? Where are the "Close Question" facists? – Mark Brady Apr 20 at 3:16
2  
@Mark: This is a similar "interview" quesiton like where you have gotten 117 votes from stackoverflow.com/questions/205003/… - So i say, It is programming related. – Sung Meister Apr 20 at 12:11
@dance2die's got you there, Mark – Michael Haren Apr 20 at 12:21
Regardless of all the hypocrisy going around, this should be a community wiki. – Mihai Limbasan Apr 20 at 13:56

8 Answers

vote up 9 vote down

Here are some of the most common questions I've been asked as an ASP.Net developer with strong SQL Server skills:

  • Name and describe the different kinds of JOINs
  • What is COALESCE?
  • Explain primary and foreign keys
  • What would you do to optimize slow-running queries?
  • What is the difference between DELETE and TRUNCATE?
link|flag
+1 This is a good step to filter out those who have no clue. What about distinguishing among advanced final applicants? – Joel Coehoorn Apr 19 at 19:33
OK, Joel, I almost never get questions about any of the newer features in SQL Server 2005 such as RANK, PIVOT, ROW_NUMBER, APPLY, CHECKSUM, using the dedicated admin connection, using CTE's, writing CLR stuff. – DOK Apr 19 at 19:37
2  
And, if you're looking for someone who keeps their skills current, ask them what new features of SQL Server 2008 they are looking forward to using, and if they've downloaded and experimented with the beta versions. – DOK Apr 19 at 19:40
I was surprised by how many DBA candidates couldn't explain the different joins or what a PK / FK was. – Josh Apr 20 at 13:54
vote up 0 vote down

How about some written test questions...

link|flag
If you'd like to, you can edit your question to include this amplification. People do that to guide the answers in directions they want. There's a little "edit" link right below the question. Then you can delete this answer. – DOK Apr 19 at 21:05
vote up 1 vote down

In SQL query section (to extend DOK):

  • How would you handle NULL problems? (ie. NULL - 25 = ?)
  • Variations for CASE in SELECTs (pros/cons)
  • User function vs. stored procedure performance
  • .NET/SQL integration (pros/cons)
  • How would you and why chain SQL queries? (via god-query, view, stored procedures etc.)
link|flag
What do you mean by chaining SQL queries? – John Dibling Apr 19 at 19:41
What's the answer to the question about user function v.s. stored procedure performance? – Andomar Apr 20 at 7:16
@John: in our SQL2k based applications it's always problem how to create testable and composite queries. If we need a report we break down it into discrete steps and chains as View1->View2->View3->Sp1. With this architecture we are able to deep-control our dataflow - not as in a 2000 line lonq T-SQL query. – boj Apr 20 at 9:31
@Andomar: in MSSQL? In that case user function's performance can be far from stored procedures (let's say in sQL2k). – boj Apr 20 at 9:36
vote up 0 vote down

I always ask programmers (not really db programmers, but programmers that shoud be able to write a DAL)

"Epxlain the difference between a subquery that is correlated and one that is not"

I know for people who know a thing or 2 about sql this sounds very easy, but to my amazement, much less than 50% gets it right.

link|flag
Are you looking for something beyond just the fact that a correlated subquery uses the results from the outer query and is executed repeatedly, or is that it? – John Dibling Apr 19 at 19:39
nono, that's it indeed! Further info was only required after they could tell me what it was in the first place! We even ended up hiring so who fail this actual question... Trouble finding IT people in Belgium =-) But still not that bad as a story I heard from so else : looking for a DB2 expert, one candidate, with 10y experience as he claimed, did not know what a stored procedure was.. – Peter Apr 19 at 20:25
I like Belgian Chocolate a lot. I'll come work for you. I've heard of stored procedures once or twice. – Mark Brady Apr 20 at 3:18
1  
Hey man, forget about the (indeed very nice) chocolate, try the beer : en.wikipedia.org/wiki/Belgian_beer. Even twice!! Come on over! – Peter Apr 20 at 9:36
vote up 0 vote down

Here are some of questions I can come up with.

  • How to implement Row_Number without using Row_Number() function.
  • How to calculate running total
  • How to transpose records - pivoting.
  • Filtering NULL records in WHERE clause
  • Conditional record ordering and filtering
link|flag
vote up 4 vote down

There are a bunch of questions here: SQL Server Quiz, Can You Answer All These?

A biggie is of course how can you code to minimize deadlocks

Take the code below for example, 80% of people get that wrong

What will be the output of the following?

SELECT 3/2
link|flag
For readers lacking access to SQL Server, SELECT 3/2 returns 1. Not 1.5. – DOK Apr 26 at 18:23
vote up 1 vote down

Name the TRANSACTION ISOLATION LEVEL's Explain each of them, Which is the default ?

link|flag
yay, 'cause we should all be doing more transactions! – Daren Thomas Apr 20 at 14:03
1  
just to add to that, what is a phantom read, dirty read, repeatable read, lost update and which isolation levels can help – SQLMenace Apr 20 at 14:16
vote up 1 vote down

A partial list of suggestions:

  • get the most awful SQL you've run across and get the candidates to explain as many things wrong with it as they can

  • ask them how they would get the query plan for the tsql they write and what are some of the things to avoid in query plans (and how they would rectify them if the did pop up); see if they know what a full table or index scan is

  • ask them if they understand how the server's optimizer works and how that might have bearing on the tsql they write

  • ask them for a examples of when it is good to use tempdb

  • see if they know which sql clauses will force the use of tempdb behind the scenes; see if they know why this is important

  • ask them for examples of when it is better not to use a cursor

  • ask them how to ensure updates in place; ask them which vendors support that and which implement updates as delete/insert

  • have them explain why it is bad practice to use select * in code

link|flag

Your Answer

Get an OpenID
or

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