I have a table with 500 columns, and many of these are null, also I can not change the database.
It's a shared project.
My problem is null, I would need to put 0 instead of null, but they are obliged to do so in the query.
I tried with:
SELECT isnull(mycolumn, 0)
FROM RGP_RegistrazioneParametri
WHERE RGP_MCC_Numero_Serie_MS = xxxx
but without success .... in this instance I should put the name for the column, and since they are 500 columns, I ask ... there is a method to do this automatically on all null?
Thank you.
ISNULL()for each column. Combine this with a query to sys.columns to get a list of the columns on that table....viewof this table which returns all columns. Next time select from thatview. This way you don't have to write always these conditions.