INSERT
Insert a record into specified stream.
Synopsis
INSERT INTO stream_name (field_name [, ...]) VALUES (field_value [, ...]);
Notes
field_value
represents the value of corresponding field, which is a constant. The correspondence between field type and inserted value is maintained by users themselves.
Examples
INSERT INTO weather (cityId, temperature, humidity) VALUES (11254469, 12, 65);