is it possible to have more than one primary key in a table code example
Example 1: how to make multiple keys as primary in bdms
CREATE TABLE `Donor`(
`did` int(50) NOT NULL,
`oid` int(50) NOT NULL,
`dname` varchar(50) NOT NULL,
`dblood` varchar(50) NOT NULL,
PRIMARY KEY (`did`, `oid`)
);
Example 2: MySQL Primary Key
Typically, you define the primary key for a table in the CREATE TABLE statement.
If the primary key has one column, you can use the PRIMARY KEY constraint as a column constraint:
CREATE TABLE table_name(
primary_key_column datatype PRIMARY KEY,
...
);