command-insert
Inserts a new row into a table
Format
INSERT INTO Table [ ( ColRef [ , ColRef ]* ) ]
{ DEFAULT VALUES | VALUES ( insert-element [ , insert-element ]* ) | query-expr }
Remarks
The INSERT command inserts new row(s) into a table.
INSERT INTO CPointAlgManual (FullName, FullScale, ZeroScale, Units)
VALUES ('ExistingGroup.NewPoint', 10.0, 0.0, 'Metres')