docs/versioned_docs/version-2.68.0/tooljet-db/database-editor.md
You can manage the ToolJet Database directly from the Database Editor. ToolJet Database organizes the data into tables that can have different structures. All the tables will be listed lexicographically on the left. Click on any of the tables to view the table data.
<div style={{textAlign: 'center'}}> </div>The sidebar on the left can also be collapsed to give more space to the database editor.
<div style={{textAlign: 'center'}}> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To create a new table in the ToolJet Database:
| Option | Description |
|---|---|
| Column name | Enter a unique name for the column. |
| Data type | Select the appropriate data type for the column from the dropdown menu. For more information on available data types, see the Supported Data Types section. |
| Default value (optional) | Specify any default value to be assigned to the column. If left blank, the column will allow null values. |
| Primary Key | Check this box to designate the column as the Primary Key. Multiple columns can be selected, creating a composite primary key. |
| NULL/NOT NULL toggle | Use this toggle to determine whether the column should allow null values or require a value. By default, null values are permitted. |
| Unique toggle | Click the kebab menu and toggle the Unique option to add a unique constraint to the column, ensuring all values are distinct. By default, duplicate values are allowed. |
| Foreign Key | Click the + Add Relation button to establish a foreign key relationship, linking this column to a primary key or unique constraint column(s) in another table. |
ToolJet Database supports several column constraints to maintain data integrity and enforce rules on the data stored in the tables. These constraints include:
Primary Key: The primary key constraint ensures that the values in the designated column(s) are unique and not null across all rows in the table. It serves as a unique identifier for each record in the table.
Foreign Key: The foreign key constraint establishes a link between the data in two tables, ensuring referential integrity. It requires that the values in the foreign key column(s) of the source table match the values in the primary key or unique constraint column(s) of the target table.
Unique: The unique constraint ensures that the values in the designated column(s) are unique across all rows in the table, allowing for null values.
Not Null: The not null constraint ensures that the designated column(s) cannot have null values, requiring a value for every row in the table.
For a detailed overview of which constraints are allowed for each data type, refer to the Permissible Constraints per Data Type table.
ToolJet Database supports both single field and composite primary keys.
When creating a new table, an id column with the serial data type is automatically generated to serve as the primary key. However, you can designate any other column as the primary key if desired. The primary key column can be of any supported data type except Boolean.
The constraints for the primary key column ensure the integrity and uniqueness of the primary key, which is essential for properly identifying and referencing records within the table. To create a single field primary key, follow these steps:
You have the option to convert an existing primary key column into a composite primary key, consisting of two or more columns. By utilizing a composite primary key, you can uniquely identify records based on multiple column values, providing greater flexibility and control over your data structure. To create a composite primary key, follow these steps:
After creating a table, you can designate any column as the primary key, provided it adheres to the required constraints. If the chosen column already contains data, the existing values must comply with the primary key constraints. However, you cannot update or modify the primary key of a target table if it is currently being referenced as a foreign key in any other source tables. To modify the primary key, follow these steps:
An existing primary key column can be deleted through the Edit Table panel. To delete the primary key column, follow these steps:
You cannot delete a Primary Key of a target table if it is being used as a foreign key in any source table(s).
</div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>A foreign key relation refers to linking one column or set of columns of the current table with one column or set of columns in an existing table. This relationship establishes a connection between the two tables, enabling the current source table to reference the existing target table. While creating a Foreign Key relationship, you can select the desired action to be performed on the source row when the referenced(target) row is updated or deleted.
While creating/editing a table(target), you will be able to add one or more than one Foreign Keys referencing the column(s) of other existing(source) tables. To create a Foreign Key relationship, follow these steps:
+ Add Relation button under the Foreign key relation section.Create button to create the Foreign Key relationship.When creating a foreign key relationship, ToolJet Database lets you choose from several actions to be performed on the source row when the referenced row in the target table is updated or deleted.
| Option | Description |
|---|---|
| Restrict (default) | Restrict any updates on target table if any referenced row is being updated. |
| Cascade | Any updates in referenced row in target table will show up in the source table as well. |
| Set NULL | Any updates in referenced row in target table will set it's instances in the source table as NULL. |
| Set to Default | Any updates referenced row in target table will set it's instances in the source table as default value of foreign key column of source table. |
| Option | Description |
|---|---|
| Restrict (default) | Restrict any deletion on target table if any referenced row is being updated. |
| Cascade | Any deletion of referenced row in target table will delete the row having it's instance in the source table as well. |
| Set NULL | Any deletion of referenced row in target table will set it's instances in the source table as NULL. |
| Set to Default | Any deletion of referenced row in target table will set it's instances in the source table as default value of foreign key column of source table. |
The foreign key constraint ensures referential integrity between the source and target tables. This constraint enforces that the foreign key column in the source table has one of the unique values present in the foreign key column in the target table.
Let's consider an example where we want to create a foreign key relationship between the Orders and Customers tables in an e-commerce application.
First, create the following two tables in the ToolJet Database:
Customers
| Column Name | Data Type | Primary Key | Not Null | Unique |
|---|---|---|---|---|
| customer_id | int | ✅ | ✅ | ✅ |
| name | varchar | ❌ | ✅ | ❌ |
| varchar | ❌ | ✅ | ✅ |
Orders
| Column Name | Data Type | Primary Key | Not Null | Unique |
|---|---|---|---|---|
| order_id | int | ✅ | ✅ | ✅ |
| customer_id | int | ❌ | ✅ | ❌ |
| order_date | varchar | ❌ | ✅ | ❌ |
| total_amount | float | ❌ | ✅ | ❌ |
We want to create a foreign key relationship between the customer_id column in the Orders table and the customer_id column in the Customers table.
Define the Foreign Key Relationship
Orders table.customer_id column.Customers table and the customer_id column.Save Changes: Click the Save Changes button to create the foreign key relationship.
Now, whenever you try to insert or update a record in the Orders table, the customer_id value must correspond to an existing customer_id value in the Customers table. This is also prevent you from deleting a customer that has associated orders. This ensures that orders are always associated with a valid customer, maintaining data integrity and consistency.
Open the Search bar by clicking on the Search button and search for a table in the ToolJet database by entering the table name.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To rename a table, click on the kebab menu icon on the right of the table name and then select the Edit table option. A drawer will open from the right from where you can edit the table name.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To add a new column to a table, either click on the kebab menu icon on the right of the table name and then select the Add new column option or click on the + button present at the end of the column header.
A drawer from the right will open up where you can enter the details for the new column:
The export schema option allows you to download the selected table schema in a JSON file. This does not export the table data or the relationships.
While exporting the app, you can choose to export the app with or without a table schema connected to the app.
To export the table schema, click on the three vertical dots icon on the right of the table name and then click on the Export option. A JSON file will be downloaded with the table schema.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To delete a table, click on the three vertical dots icon on the right of the table name and then click on the Delete option. A confirmation modal will appear, click on the Delete button to delete the table.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To edit a column, click on the kebab menu on the column name and select the option to Edit column. When you edit the column, the data type cannot be changed.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To delete a column, click on the kebab menu on the column name and select the option to Delete. You cannot delete a column if it is being used as a primary key. You will have to remove the primary key constraint from the column before deleting it.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>The Add new data button on the top of the table editor allows you to add data to the table. You can either Add new row or Bulk upload data to add the data to the table.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To add a new row to a table, either click on the Add new data button on top and then select the Add new row option or click on the + button present at the bottom left.
A drawer from the right will open up where the values for the new row can be provided.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>To edit a row, hover on the row that you want to edit and the expand icon will appear next to the checkbox of that row. Click on the Expand icon to open the drawer and edit the row.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>You can bulk upload data to the ToolJet database by clicking the Bulk upload data button at the top of the database editor. On clicking the button, a drawer will open from the right from where you can upload a CSV file. This file is used to insert records onto the table. If data for the id column is missing, it will insert a new record with the row data; if the id is present, it will update the corresponding record with the row data.
From the drawer, users can download the template CSV file in which they can enter the data to be uploaded to the ToolJet database's table or format their CSV file in the same way as the template file.
Once the CSV file is ready, click on the file picker to select the file or drag and drop the file in the file picker. Now, click on the Upload data button to upload the data to the ToolJet database.
Requirements:
id column with a serial data type should not contain duplicate values.Unique, it should not contain duplicate values in the CSV file.Limitations:
To delete one or many records/rows, click the checkbox to the right of the record or records you want to delete. As soon as you select a single record, the button to delete the record will appear on the top, click on the Delete record button to delete the selected records.
<div style={{textAlign: 'center'}}> </div> </div> <div style={{paddingTop:'24px', paddingBottom:'24px'}}>You can add as many filters as you want into the table by clicking on the Filter button present on the top of the database editor.
| Operation | Description |
|---|---|
| equals | This operation is used to check if the value of the column is equal to the value entered in the input field. |
| greater than | This operation is used to check if the value of the column is greater than the value entered in the input field. |
| greater than or equal | This operation is used to check if the value of the column is greater than or equal to the value entered in the input field. |
| less than | This operation is used to check if the value of the column is less than the value entered in the input field. |
| less than or equal | This operation is used to check if the value of the column is less than or equal to the value entered in the input field. |
| not equal | This operation is used to check if the value of the column is not equal to the value entered in the input field. |
| like | This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-sensitive. ex: ToolJet will not match tooljet |
| ilike | This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-insensitive. ex: ToolJet will match tooljet |
| match | This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-sensitive. ex: ToolJet will not match tooljet. This operation uses regular expressions. ex: ^ToolJet$ will match ToolJet but not ToolJet Inc. |
| imatch | This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-insensitive. This operation uses regular expressions. ex: ^ToolJet$ will match ToolJet but not ToolJet Inc. |
| in | This operation is used to check if the value of the column is in the list of values entered in the input field. ex: (1,2,3) |
| is | This operation is used to check if the value of the column is equal to the value entered in the input field. This operation is used for boolean data types. |
To sort the table data, click on the Sort button on top, select a column from the dropdown, and then choose an order ascending or descending.
<div style={{textAlign: 'center'}}> </div> </div>