engineer2100
Programmer
Which of these two is better w.r.t performance?
OR
I can change the data within the table to 0 from null if the later is better. I am looking a rows that run into couple of 1000s
Code:
Select x,y,
From a
where C is null
Code:
Select x,y,
From a
where C = 0
I can change the data within the table to 0 from null if the later is better. I am looking a rows that run into couple of 1000s