Which built-in can you use to replace any existing rows in REGIONS with the results of a query?

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?

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.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Jackie

Jackie

What’s the difference between answer c and f?

admin

admin

Oh sorry, duplicate answers. Fixed.