Member since
02-14-2017
2
Posts
0
Kudos Received
0
Solutions
03-02-2017
11:09 PM
2 Kudos
For getting the number of rows in result set you could use this query Select count(*) from (SELECT t1.c1 ,t1.c2 FROM t1 WHERE NOT (t1.c1 IS NULL )) AS table_1;
... View more