|
A union would work.
SELECT amount AS amount, 0 AS debit
FROM yourfile
WHERE amount >= 0
UNION ALL
SELECT 0 AS amount, amount AS debit
FROM yourfile
WHERE amount < 0
You might want to look at the UNION ALL part, you might not need the "ALL",
but you can play with it.
James R. Perkins
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.