I am trying to create in postgresSQL 9.3 tables
CREATE TABLE Customer
(
cid INT,
name VARCHAR(32),
);
CREATE TABLE Product
(
producno INT,
name VARCHAR,
);
CREATE TABLE Order
(
oderid INT,
shipdate DATE,
cid INT,
);
CREATE TABLE Ordered
(
orderid INT,
prodno INT,
);
But I get an syntax error on line 5 ')'
SQL Status:42601 So I have already looked in PostgreSQL Error Codes so it says only that it is a syntax error But if I try it with other querys from the internet it works but trying to create my own I get an error