In my APEX application, I would like to use rows from query as variables, but I don't want to create items for each element. Those variables I will have to show in my custom HTML page.
For example this is query:
SELECT cells.id as id, cells.name as name, storage.capacity as capacity from cells, storage WHERE storage.capacity > 120
Then in my custom HTML code I would like to reference those rows, something like this(sorry I don't know the syntax of variables):
<div>#name[1]#</div><a href="p?#id[1]"...
<div>#name[2]#</div><a href="p?#id[2]"...
So how can I do it for single fetched row and for multiple rows? Which type of process and region to engage?