Thursday 27 March 2014

Total amount display

display Amount totalAmount()
{
    SalesLine       salesLine;
    ;
    select sum(LineAmount) 
        from salesLine 
            where salesLine.SalesId == this.SalesId;
    return salesLine.LineAmount;
}

No comments:

Post a Comment

SQL/SSRS Interview questions I thought of blogging some SQL/SSRS interview questions.

Below are some. I will add more, when I complete the compilation 1. What is OLTP(Online Transaction Processing)? OLTP stands ...