13 lines
327 B
Transact-SQL
13 lines
327 B
Transact-SQL
-- =============================================
|
|
-- Author: Steamware - S.E.L.
|
|
-- Create date: 2014.04.17
|
|
-- Description: recupera ultimo record del tipo richiesto
|
|
-- =============================================
|
|
create PROCEDURE [dbo].[stp_QLF_getLast]
|
|
AS
|
|
|
|
SELECT TOP 1 *
|
|
FROM v_QuoteFull_Q
|
|
ORDER BY CodQuote DESC
|
|
|
|
RETURN |