GlideAggregate Question
Hi Everyone, I am new to this can anyone please tell me why we use if block while counting record using GlideAggregate. var count = new GlideAggregate('u_test');count.addAggregate('COUNT');count.query();var computer=0;if(count.next()) { c...