Table
Tables
Tables are used to store data retrieved from websites or data during the execution of an automated script. Each column in a table has a specific data type.
Creating a Table
Before adding data to a table, you must first create columns. There are five data types available for columns:
Text - string values (e.g., names, descriptions)
Number - numerical values (e.g., prices, quantities)
Boolean -
true
orfalse
values (e.g., status, conditions)Array - a list of multiple values within a single column
Any - Can store any type of data dynamically
Once the columns are defined, you can start inserting data into the table
Export Table Data
To export a table as a file, you can choose to export the data in various formats, such as:
JSON (JavaScript Object Notation) – Exports data in a structured JSON format, suitable for use in web applications, programming, or API communication.
CSV (Comma-Separated Values) – Exports data in a format where values are separated by commas (
,
), making it ideal for use with Excel or data analysis software.Text (Plain Text) – Exports data as a plain text file, suitable for simple data storage or note-taking.
Last updated