The REGIONS non-query Record Group has two char columns.
Which built-in can you use to replace any existing rows in REGIONS with the results of a query?
A.
ADD_GROUP_ROW(REGIONS’,2);
B.
rgno :- POPULATE_GROUP(REGIONS’);
C.
rgno :- POPULATE_GROUP_WITH_QUERY(‘REGIONS’, ‘select name, country, id from regiontable’);
D.
rgno := CREATE_GROUP_FROM_QUERY(‘REGIONS’, ‘select name, country, id from regiontable’)
E.
You cannot populate a non-query Record Group with the results of a query.
What’s the difference between answer c and f?
Oh sorry, duplicate answers. Fixed.