Adding rows to a table
•
INSERT INTO sources VALUES
( 'NGC7072', 21.45694, -43.37306, 14.31,
13.33 );
•
•
INSERT INTO sources (name, rmag)
VALUES ('NGC891', 16.45);
Layout is free format
How to use numerical constant and character constants (delimited by single quotes)
NULL is substituted for the missing ra, dec, bmag VALUES in the second example