Using afterGet with a Database connected Table

I’m trying to merge two fields together into a single HTML element in a table (specifically, I’m looking to take the link from one database column and merge it with the text from another column to build an embedded link).

I’d like to use something like afterGet to do this, it seems like a natural fit, but does it work with database tables? Or do I need to do a raw query?

It’s not a matter of whether hooks works with tables - rather they work with the database. See the Hooks API and Wix Code: How to Use Data Hooks .

Right, but the problem is the afterGet hook wasn’t being called on row render. Solved this by using afterQuery instead.