Would someone please explain to me what is the keyword "Primary" after "ON"
means in this create table statement ? I couldn't find it in the "create
table" help page. Thank you very much!! -tim
CREATE TABLE [PRODUCT_PRICE_ASSOCIATION] (
[PriceId] [GUID] NOT NULL ,
[ProductId] [GUID] NOT NULL ,
PRIMARY KEY CLUSTERED
(
[PriceId],
[ProductId]
) ON [PRIMARY] , -- <<<<<<< What is this key word Primary? What does it
do?
CONSTRAINT [FK__asdfasf__46E78A0C] FOREIGN KEY
(
[ProductId]
) REFERENCES [Product] (
[ProductId]
),
FOREIGN KEY
(
[PriceId]
) REFERENCES [Price] (
[Price]
)
) ON [PRIMARY] -- <<<<<<< What is this key word Primary? What does it do?