Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
SELECT [[DISTINCT] column_list] [INTO table [AS type]] FROM table_list [WHERE expression] [ORDERBY [DISTINCT] sort_list] [LIMIT expression] [OFFSET expression] [GIVING table|set]It can be used to get an optionally sorted subset from a table.
UPDATE table_list SET update_list [FROM table_list] [WHERE ...] [ORDERBY ...] [LIMIT ...] [OFFSET ...]It can be used to update data in (a subset of) the first table in the table list.
INSERT INTO table_list [(column_list)] VALUES (expr_list) or INSERT INTO table_list [(column_list)] SELECT_commandIt can be used to add and fill new rows in the first table in the table list.
DELETE FROM table_list [WHERE ...] [ORDERBY ...] [LIMIT ...] [OFFSET ...]It can be used to delete some or all rows from the first table in the table list.
CALC [FROM table_list CALC] expressionIt can be used to calculate an expression, in which columns in a table can be used.
CREATE TABLE table [column_spec] [DMINFO datamanager_list]It can be used to create a new table with the given columns. in a table can be used.