Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 01-06-2019 10:52 AM
Query:
select 2gusage,count(2gusage) from demo group by 2gusage;
Output:
MID 765153
HIGH 18095461
LOW 119069472
NULL 25997075
I tried the below query to find the count of NULL values
Query
select count(*) from demo where 2gusage is 'NULL';
Output
0
Kindly help me out with the query to find the count of NULL values
Created 01-06-2019 02:42 PM
1.Try with below query:
select count(*) from demo where 2gusage is NULL;
2.If literal NULL is in your data for 2gusage column then use the below query:
select count(*) from demo where 2gusage = "NULL";
Created 01-06-2019 02:42 PM
1.Try with below query:
select count(*) from demo where 2gusage is NULL;
2.If literal NULL is in your data for 2gusage column then use the below query:
select count(*) from demo where 2gusage = "NULL";
Created 01-08-2019 03:39 AM
@Shu . Thankyou so much . Second query worked