Bulk Update Multiple Rows in Table
For the purpose of this guide, it's presumed that you've already established a successful connection to your data source. We'll use PostgreSQL for this example, but you can adjust the queries based on the SQL database that you are using.
1. Create a Query to Get the Data
- Create a PostgreSQL query in SQL mode, rename it to users and enter the below code.
SELECT * FROM <table name> // *replace <table name> with your table name*
- Enable the
Run the query on application load?
option to execute the query automatically when the application starts. - Click on the Run button to fetch the data from the database.

2. Display the Data on the Table
- Drag and drop a Table component onto the canvas from the components library on the right.
- Click on the Table component to open its properties on the right sidebar.
- To populate the Table with the data returned by the query, add the below code under the
Data
field of the Table:
{{queries.users.data}}

3. Make the Columns Editable
- Under the Columns accordion, click on the column name that you want to make editable.
- On clicking the column name, a new section will open. Enable the toggle for
Make editable
to make the column editable.
