Products
Query from products table
Table Specific Information
Note: Only users with admin privileges can access the following Table.
Select
Following is an example to select all entries from Products table:
SELECT * FROM Products
You can also select a specific entry from Products table:
SELECT * FROM Products WHERE Id = 100
Columns
| Name | Type | Description |
| Id [KEY] | Bigint | Product ID. |
| Description | String | Description of the product. |
| Name | String | Name of the product. |
| CreatedAt | Datetime | Product creation timestamp. |
| UpdatedAt | Datetime | Product updated timestamp. |