/* ---------------------------------------------------------------- This file shows how to create simple tables ---------------------------------------------------------------- */ /* create Customers table into the database */ CREATE TABLE Customers ( CompanyName CHAR(100), ContactName CHAR(100), Address CHAR(200), City CHAR(50) );