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 3441670
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:34:53+00:00 2026-05-18T08:34:53+00:00

I have table tblsale . In this table i have field called BillType ,

  • 0

I have table tblsale.
In this table i have field called BillType, which contains “s” and “r” (s = sale , r = returns )

The table has rougly 25 records. Of that, 7 records are “r”, and rest of the records are “s”.

How do I write the query so that my result set includes the following columns:

What is want exactly is below

Amount BillType Amount  BillType   Date
 100      s       50       r   29-11-2010
 120      s       20       r   28-11-2010
 130      s       30       r   27-11-2010
 140      s       50       r   26-11-2010
  • 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-18T08:34:53+00:00Added an answer on May 18, 2026 at 8:34 am

    What you appear to want are the results of two queries, sales and returns, side by side. It can be done with a kludge like this:

           select amount, sale, returnamount, returned, returndate
           from
           (
           select amount, 1 as sale, 0 as returnamount, 0 as returned, '' as returndate
           from sales where billtype='s'
           union
           select 0 as amount, 0 as sale, amount as returnamount, 1 as returned, date as returndate
           from sales where billtype ='r'
           ) 
    

    You may have to cast date into a string representation. The unioned sets need the same column structure, so you create dummy columns. (You didn’t ask for a sale date for sales.)

    Or you can do this with CASE WHEN statement.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have table that has date field. When I run a query, I see
I have table named as contacts which has nearly 1.2 million records we use
I have table A in Oracle that has a primary key (id). I need
I have table called Direccion other called Cliente each one defined like this public
I have table field defined as like this approved_at DATETIME YEAR TO SECOND NOT
I have table in my database which has fields of ID,NAME,CONTEXT. I am showing
I have table in an MS Access database that looks like this: ID Symbol
I have table X, and each record in X has many records in Y.
I have table with some fields that the value will be 1 0. This
I have table 'pages' in my database. I have noticed that cakePHp has a

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.