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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:00:21+00:00 2026-05-16T08:00:21+00:00

The following SQL code creates a two-line table with an invoice on one line

  • 0

The following SQL code creates a two-line table with an invoice on one line and payment grouped on the other line. However that’s not the desired representation. The real goal is to display it as statement, where the invoice is at the top, followed by a list of payments ordered by date.

Is it possible to write a query to accomplish that, based on the information shown? (Feel free to request more information). Can anyone suggest an approach?

Here is the SQL SELECT code:

SELECT     FilteredInvoice.accountidname,
           FilteredInvoice.createdon,
           FilteredInvoice.duedate,
           FilteredInvoice.invoicenumber,               
           FilteredInvoice.statecodename,
           FilteredInvoice.totalamount_base,
           FilteredMag_Payment.mag_paymentdate,
           FilteredMag_Payment.mag_amount_base,
           GETDATE() AS Today

FROM            FilteredInvoice
LEFT OUTER JOIN FilteredAccount ON FilteredInvoice.accountid = FilteredAccount.accountid
LEFT OUTER JOIN FilteredMag_Payment ON FilteredInvoice.invoiceid = FilteredMag_Payment.mag_invoiceid

WHERE     (FilteredInvoice.statecodename <> N'Canceled')
ORDER BY FilteredInvoice.createdon
  • 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-16T08:00:21+00:00Added an answer on May 16, 2026 at 8:00 am

    There are some oddities about the original query – is the Account ID Name really held on the Invoice table, rather than the Account table? The left outer join from Invoice to Account also makes it look as though there could be Invoices without corresponding Accounts – it would be more normal to assume the converse, especially in a statement report.

    Assuming the original query is selecting the required data correctly, I suggest:

    SELECT    FilteredInvoice.accountidname, 
        FilteredInvoice.createdon,
        FilteredInvoice.createdon AS sort_date,
        FilteredInvoice.duedate,
        FilteredInvoice.invoicenumber,
        FilteredInvoice.statecodename, 
        FilteredInvoice.totalamount_base,
        CONVERT(datetime,NULL) AS mag_paymentdate,
        0 AS mag_amount_base,
        GETDATE() AS Today
    FROM    FilteredInvoice 
    LEFT OUTER JOIN    FilteredAccount ON FilteredInvoice.accountid = FilteredAccount.accountid 
    WHERE    (FilteredInvoice.statecodename <> 'Canceled')
    UNION ALL
    SELECT    FilteredInvoice.accountidname, 
        FilteredInvoice.createdon,
        FilteredInvoice.createdon AS sort_date,
        FilteredInvoice.duedate,
        FilteredInvoice.invoicenumber,
        FilteredInvoice.statecodename, 
        FilteredInvoice.totalamount_base,
        FilteredMag_Payment.mag_paymentdate,
        FilteredMag_Payment.mag_amount_base,
        GETDATE() AS Today
    FROM    FilteredInvoice 
    LEFT OUTER JOIN    FilteredAccount ON FilteredInvoice.accountid = FilteredAccount.accountid 
    JOIN    FilteredMag_Payment ON FilteredInvoice.invoiceid = FilteredMag_Payment.mag_invoiceid
    WHERE    (FilteredInvoice.statecodename <> 'Canceled')
    ORDER BY 3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I built two tables with the following SQL: CREATE TABLE state( IDstate INTEGER not
I have the following SQL code that runs against a Change Request database. Each
I need to create a table (possibly a view) that relates two tables, one
I have two lines of code in SQL that create two tables on the
I have the following two tables: CREATE TABLE `table1` ( `ID` int(11) NOT NULL
I have the following table: I am trying to create an SQL query that
I have the following two tables (SQL scripts with data): CREATE TABLE [dbo].[Item_Master]( [Item_Name]
I'm trying to create a new function in SQL with the following code: CREATE
I've got the following sql code: declare @x xml set @x = '<ResultBlock> <MatchSummary
What is the best way of transcribing the following Transact-SQL code to Informix Dynamic

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.