When I attempt to create a table with this command:
CREATE TABLE Client(ncli char(10) not null primary key,
nom char(32) not null,
adress row(rue char(30),
localite char(60)),
cat char(2));
I get an error saying :
ERROR: syntax error at or near "row"
Why do I get the error, and how can I avoid it?
adressestable.