Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4122488
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T23:29:17+00:00 2026-05-20T23:29:17+00:00

I have two tables. Sales —— ID Charge VAT 1 100 10 2 200

  • 0

I have two tables.

Sales
------

ID    Charge    VAT
1     100      10
2     200      20


SaleProducts
------------

ID  Product    Auto   SalesID
1   aa         True   1 
2   bb         False  1

I want to get this

SaleOnProduct
-------------

ID    Product     Charge     VAT    Total   TotalAmount(All of total is plus)
1     aa          100        10     110     220  
2     aa          100        10     110     220

How can I do this. Please help me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T23:29:18+00:00Added an answer on May 20, 2026 at 11:29 pm
    declare @Sales table (ID int, Charge int, VAT int)
    declare @SaleProducts table (ID int, Product char(2), Auto bit, SalesID int)
    
    insert into @Sales values
    (1, 100, 10),
    (2, 200, 20)
    
    insert into @SaleProducts values
    (1, 'aa', 1, 1),
    (2, 'bb', 0, 1)
    
    select 
      SP.ID, 
      SP.Product,
      S.Charge,
      S.VAT,
      S.Charge+S.VAT as Total,
      sum(S.Charge+S.VAT) over() as TotalAmount
    from @Sales as S
      inner join @SaleProducts as SP
        on S.ID = SP.SalesID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ok say I have two tables Product and Sales The product contains the id,
I have the following two tables: Table X Product Type Sales 1 a 1
I have two tables: 1) product data 2) sales stats of these products In
I have two tables: Sales.SalesOrderHeader(SalesOrderID(PK), SalesOrderNumber, Status,..) Sales.SalesOrderDetail(SalesOrderID(PK,FK), ..) I've declared a variable @numdetail
I have two tables, sales and costs, each with a costs fields, and a
I have two tables: one contains employees information and another is transactions (sales) information
I have two tables, Purchases and Sales: Purchases: SKU    SID    NID   Cost 001     A1     9A    $1.07 001     A2     4A    $1.07 002     A1     5B    $2.24 Sales: SKU    SID    NID   Sale
I have two tables, table A : Customer_ID Product Date Of Sale Pay Meth
I have two mysql tables - a sales table: +----------------+------------------------------+------+-----+---------+-------+ | Field | Type
I have two tables in MySQL sales database: Orders table: CREATE TABLE salestest.`orders` (

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.