Data Manipulation Language (DML)
INSERT INTO Contact ( Name, DateOfBirth, PlaceOfBirth, DateOfDeath, PlaceOfDeath ) VALUES ( "Jesus Christ", NULL, "Bethlehem", 0032-04-06, "Jerusalem" ) INSERT INTO URI ( url, Title, Dated, NumberOfEmployees ) VALUES ( "http://en.wikipedia.org/wiki/Microsoft", "Microsoft", 1994-12-28, 228000 ) INSERT INTO URI ( Title, Dated, NumberOfEmployees, url ) VALUES ( Google, 1997-09-15, 187000, "http://en.wikipedia.org/wiki/Google" ) INSERT INTO Empty ( Title, Dated ) VALUES ( "Empty row 1", 2019-09-11 ) INSERT INTO URI ( url, Commentary, Dated, NumberOfEmployees ) VALUES ( "http://en.wikipedia.org/wiki/Apple_Inc.", "IPhone", 1987-02-19, 166000 ) INSERT INTO Empty ( Title, Dated ) VALUES ( "Empty row 2", "2019-09-12" ) INSERT INTO Empty ( Title, Dated ) VALUES ( "Empty row 3", 2019-09-12 ) DELETE Empty INSERT INTO ForthComing ( Title, Dated ) VALUES ( "ForthComing row 1", 2019-09-12T14:22:00 ) INSERT INTO URI ( url, Commentary, Dated, NumberOfEmployees ) VALUES ( "http://ibm.com", "IBM Personal Computer (PC)", 1986-03-19, 270300 )