What does "foo" mean in SQL Server Query ?
Posted
by John
on Stack Overflow
See other posts from Stack Overflow
or by John
Published on 2010-06-01T15:51:38Z
Indexed on
2010/06/01
16:03 UTC
Read the original article
Hit count: 157
for eg...
SELECT *
FROM ( SELECT RANK() OVER (ORDER BY stud_mark DESC) AS ranking,
stud_id,
stud_name,
stud_mark
FROM tbl_student ) AS foo
WHERE ranking = 10
Here foo
is present...actually what it does ?..
© Stack Overflow or respective owner