Groups
Query, create, update and delete your account's groups
テーブル固有の情報
Select
Highrise アカウントで作成されたグループのリストを取得します。
SELECT * FROM Groups
Insert
名前を入れることで新しいグループを作成します。
INSERT INTO Groups (Name) VALUES ('ABC123')
Update
グループId を付けて、グループ名を変更します。
UPDATE Groups SET Name = 'ABC' WHERE Id = '123'
Delete
グループId を指定して、グループ名を削除します。
DELETE FROM Groups WHERE Id = '123'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Integer | True |
The unique identifier of the group. | |
| Name | String | False |
The name of the group. |