I have a big table with some NULLs in it. What is the easiest possible way to select from the table with 0\'s instead of NULLs.
Or if there is no easy way to do that
You have to manually specify each column in SELECT statement and use ISNULL() function:
SELECT ISNULL(columnName, 0), ... yes all of them