I want to define a primary key in QLDB that the query language is PartiQL, how can I define ID as a primary key?
CREATE TABLE CarInfo WITH (aws_tags = `{ 'ID': INT, 'Manufacturer': STRING, 'ProductionYear': year, 'Model':STRING, 'VIN':STRING, 'Owner': STRING}`);
P.S., Since in the document of "Amazon QLDB-Developer Guide" is written "QLDB supports open content and does not enforce schema, so you don't define attributes or data types when creating tables.", maybe there is no PRIMARY KEY exsit in the PartiQL?