0 votes
in Sql by
what is Sp_pkeys?

1 Answer

0 votes
by

Sp_pkeys is part of Catalog Stored Procedures and returns primary key information for a single table in the current database. Sytax for Sp_pkeys is

sp_pkeys [ @table_name = 'Table name.' ]

...