I have a request like this
SELECT COUNT(ID) 'Records Affected', TYPE FROM MASTER GROUP BY TYPE
Way out for that
Records Affected TYPE ---------------- ---- 4 F1 3 F2 5 F3
Now I would like to modify the query so that the result is as follows:
Records Affected ---------------- The number of records affected for F1 is : 4 The number of records affected for F2 is : 3 The number of records affected for F3 is : 5 "The number of records affected for " + TYPE + " is : " + COUNT.
How to add default text to each row of the result set instead of adding in the interface. I would like to simplify the task of just showing the records in the DataGrid as Summary.
source share