Hi.
I have a database with many records and needs to know the field names of a table. I do not have EXPLAIN installed on my PC so I am a little worried about table space scan for this query.
Is it possible for someone to run an EXPLAIN report on sql server for the following sql to see if they avoid doing a table space scan:
SELECT * FROM TABLE WHERE 1=0
SELECT TOP 1 * FROM TABLE.
Hope someone can help.
I have a database with many records and needs to know the field names of a table. I do not have EXPLAIN installed on my PC so I am a little worried about table space scan for this query.
Is it possible for someone to run an EXPLAIN report on sql server for the following sql to see if they avoid doing a table space scan:
SELECT * FROM TABLE WHERE 1=0
SELECT TOP 1 * FROM TABLE.
Hope someone can help.