Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

किसी फ़ंक्शन (यूडीएफ) से टेबल वैरिएबल कैसे वापस करें?

आप DECLARE का उपयोग नहीं करते हैं तालिका चर लौटाते समय। परिणाम तालिका को RETURNS में परिभाषित करें खंड।

CREATE Function GetFinancials ()
RETURNS @financials TABLE
(
  [a bunch of variable declarations in here]
)
AS
BEGIN
    insert into @Financials
    [big old SELECT query here - this all works fine, and populates @Financials]

    RETURN
END

अपडेट करें

संग्रहीत प्रक्रिया में अंतिम परिणाम कैसे लौटाएं?

create procedure uspGetFinanicals
as
  declare @financial table
  (
    [table definition here]
  )

  insert into @financial
  select dbo.GetFinancials()

  select * 
    from @Financials f1
    where f1.TransactionDate = (
        select MAX(TransactionDate)
        from @Financials
        where SalesDocumentItemID = f1.SalesDocumentItemID
    )

अपडेट करें

इसे इस्तेमाल करे। पहले चयन के परिणामों को संग्रहीत करने के लिए यूडीएफ के भीतर एक टेबल वैरिएबल बनाएं, फिर अंतिम क्वेरी के परिणाम को रिटर्न वैल्यू में डालें।

CREATE Function GetFinancials ()
RETURNS @financials TABLE
(
  [a bunch of variable declarations in here]
)
AS
BEGIN
    declare @table table([a bunch of variable declarations in here])
    insert into @table
    [big old SELECT query here - this all works fine, and populates @Financials]

    insert into @Financials
    select * 
      from @table f1
      where f1.TransactionDate = (
        select MAX(TransactionDate)
        from @table
        where SalesDocumentItemID = f1.SalesDocumentItemID
      )

    RETURN
END



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL सर्वर में SYS स्कीमा में तालिका कैसे बनाएं?

  2. पंक्तियों के बच्चे होने पर डेटाबेस में पंक्तियों की प्रतिलिपि बनाना

  3. दो कॉलम डेटा के लिए सभी संभावित संयोजन

  4. चयन क्वेरी में समूह के साथ होने वाले खंड को कैसे लागू करें - एसक्यूएल सर्वर / टीएसक्यूएल ट्यूटोरियल भाग 131

  5. SQL सर्वर अलगाव स्तर:एक श्रृंखला