Preguntas etiquetadas con composite-key

111
Postgres: ¿Cómo hacer claves compuestas?

No puedo entender el error de sintaxis al crear una clave compuesta. Puede ser un error de lógica, porque he probado muchas variedades. ¿Cómo se crean claves compuestas en Postgres? CREATE TABLE tags ( (question_id, tag_id) NOT NULL, question_id INTEGER NOT NULL, tag_id SERIAL NOT NULL, tag1...