/* ---------------------------------------------------------------- This script shows how to fill tables with data using INSERT sql statements ---------------------------------------------------------------- */ INSERT INTO Customers (CompanyName, ContactName, Address, City) VALUES ('Alfreds Futterkiste', 'Maria Anders', 'Obere Str. 57', 'Berlin'); INSERT INTO Customers (CompanyName, ContactName, Address, City) VALUES ('Berglunds snabbköp', 'Christina Berglund', 'Berguvsvägen 8', 'Luleå'); INSERT INTO Customers (CompanyName, ContactName, Address, City) VALUES ('Centro comercial Moctezuma', 'Francisco Chang', 'Sierras de Granada 9993', 'México D.F.'); INSERT INTO Customers (CompanyName, ContactName, Address, City) VALUES ('Ernst Handel', 'Roland Mendel', 'Kirchgasse 6', 'Graz');