RETURNING in postgresql

@George
The postgresql database has a surprisingly strong feature, which in some situations can speed up the query by 2-3 times. I’m talking about RETURNING in INSERT, UPDATE and DELETE queries. Unlike mysql/mariadb, thanks to this command, you can both INSERT, UPDATE and DELETE in query, and get all the record data in the response. Due to this, it is not necessary to make a separate request to get the full data of the inserted record. In some cases, this incredibly speeds up the final execution of the server action.

Question: is it possible to make Wappler support this postgresql feature in the basic INSERT, UPDATE and DELETE queries?

Community Page
Last updated: