Possible Duplicate:
SQL: Using Select *
Hi everyone!
I wonder if it is really a bad idea to use the * symbol in stored procedure in SQL server? Is really better to write
SELECT
NAME,
AGE,
OTHER_STUFFS
FROM
TABLE
than
SELECT * FROM TABLE
For sure is only 3 columns in the table.. For performances is it better to enumerate every column? Tanks for help..