In SSMS 2008 R2, we have the default Select top 1000 and Edit top 200 queries from the right-click menu. I saw where you can change the # lines that it returns in the parameters.
What do I need, can I say to make SELECT * instead of expanding and including all fields?
This is not a performance issue or anything else, just annoying when querying tables with more than 5 fields, I would like to make select *.
For example, if I have a table with the following fields:
- Firstname
- Lastname
- Birthday
- Town
- condition
- Zip
When I right-click on this Persons table and select SELECT TOP 1000 ROWS, I need a query that will execute
SELECT TOP 1000 * FROM People
and NOT
SELECT TOP 1000 FirstName, LastName, Birthday, City, State, Zip FROM People
EDIT I suspect that there really is no answer to this question, but I thought I would see if everyone understood.
sql sql-server-2008
taylonr
source share