Is there a simple way of returning only five results from the following stored procedure (ie those 5 companies who registered most recently)
==========================================================
ALTER PROCEDURE GetNewestCompanies
AS
SELECT
CompanyName,
RegDate
FROM
Company
ORDER BY
RegDate DESC
===========================================================
cheers,
si
==========================================================
ALTER PROCEDURE GetNewestCompanies
AS
SELECT
CompanyName,
RegDate
FROM
Company
ORDER BY
RegDate DESC
===========================================================
cheers,
si