2
Answers

display related data even if the needed data is 0

Hazel Mahmud

Hazel Mahmud

8y
313
1
hello...
 
 how do i display related data if the data i needed result is 0. 

 
 
i have the above Sql and the result are as shown but sometime there are result that doesn't exist but i want to display 0 at the count7 column with related where condition such as ans_ss_id, ans_term and so on as above result..  how do i do that..please someone help me..tq in advance
 
Answers (2)
1
Amit Gupta

Amit Gupta

NA 16.5k 25.7k 8y
You can use ISNULL function, if value is null it display 0
 
ISNULL(columnName, 0)
 
For further reference:
http://stackoverflow.com/questions/16667148/instead-of-null-how-do-i-show-0-in-result-with-select-statement-sql
 
Do let me know if it solves your problem. 
0
Bikesh Srivastava

Bikesh Srivastava

NA 19.8k 835.1k 8y
Use this code.
ISNULL(clmnName, 0)