wikidba.net
Avoid SELECT * FROM TABLENAME
Select * from TableName in your PRODUCTION code or Stored Procedure is problematic because if a column is added or deleted, you can expect a sure bug. It is still generally advisable not to use SEL…