Surveys
Query from surveys table
Table Specific Information
Select
Following is an example to select all entries from Surveys table:
SELECT * FROM Surveys
You can also select a specific entry from Surveys table:
SELECT * FROM Surveys WHERE Id = 73000092562
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | Bigint | False |
Survey ID. |
| Title | String | True |
Title of the survey. |
| Questions | String | False |
Questions associated with the survey. |
| CreatedAt | Datetime | True |
Survey creation timestamp. |
| UpdatedAt | Datetime | True |
Survey updated timestamp. |