Monday, October 01, 2007

SQL Teaser: Guess the output

Here is a small teaser, can you guess the output?


SELECT d.c-d.b/d.a
FROM(SELECT 1,2,5)d(a,b,c)

1 comment:

Anonymous said...

Is it 3?