Dear all,
I have this query in my MS SQL SERVER
select * from user_table
But the sql server correct the query to below when i run or save the query
select user_id,password from USER_TABLE
How do i use make the * permanently as i don't want to change the query every time i add the new column into that table.
Thank you
Go to the complete details ...