I'm curious if creating a primary key for multiple columns uses the same format as for creating a primary index for multiple columns like below? Let say that I want to have two primary indexes for the table below, is it correct?
CREATE TABLE sample_1
(col_a INT
,col_b INT
,col_c INT)
PRIMARY INDEX (col_b, col_c);