ForumCategories
Gets all the forum categories.
Select
You can use the below query to get all ForumCategories:SELECT * FROM ForumCategories
Insert
To create a new Forum Category you can use the below query:
INSERT INTO ForumCategories (name) VALUES ('New Forum Category')
Delete
ForumCategories can be deleted by providing the Id and issuing a DELETE statement.
DELETE FROM ForumCategories WHERE Id = '123456000000045018'
Columns
Name | Type | ReadOnly | Description |
Id [KEY] | String | False |
Forum Category Id. |
Name | String | False |
Forum Category Name. |