previous | start | next

SQL Command to Create a Table

CREATE TABLE Product
(
   Product_Code CHAR(11),
   Description CHAR(40),
   Price DECIMAL(10, 2)
)

previous | start | next