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 | Description |
| Id [KEY] | Bigint | Survey ID. |
| Title | String | Title of the survey. |
| Questions | String | Questions associated with the survey. |
| CreatedAt | Datetime | Survey creation timestamp. |
| UpdatedAt | Datetime | Survey updated timestamp. |