sql count value greater than

Solutions on MaxInterview for sql count value greater than by the best coders in the world

showing results for - "sql count value greater than"
Marius
01 Feb 2019
1SELECT COUNT(1) AS NumberOfGreaterThan0 
2FROM YourTable
3WHERE col1 >=0