I am following the tutorial at https://docs.sqlalchemy.org/en/latest/core/tutorial.html
I see an example for primary key, it seems to use just one column
>>> users = Table('users', metadata,
... Column('id', Integer, primary_key=True),
... Column('name', String),
... Column('fullname', String),
... )
how do define primary key with a sequence of columns?
Tablepretty much as is, docs.sqlalchemy.org/en/latest/core/… in the official docs.