I’m using softr against a MySQL database. I need to update one table but also display data from another
Example
I want to update quantity on an order table but show information alongside the editable fields from a product table.
Product ID (updateable, order table)
Quantity (updateable, order table)
Description (view only, products)
Price (view only, products)
Is this possible? It’s a very basic requirement but struggling to find a way to do it
Thanks
Mike