I am working on a database that is not normalized and it cannot be normalized as I don't have the permissions. The problem is
I have two tables
- Gl_Account
- Trial Balance
the structure of the tables are like
Gl_Account (empty table or with some old data)
loc | gl_acct | HMISTOTAL
-------------------------------
| |
-------------------------------
Trial Balance
loc | g1101 | g1102 | g1103
----------------------------------------
1400 | 20 | 30 | 0
----------------------------------------
1500 | 10 | 0 | 40
----------------------------------------
Now what I want to do is
Fetch the Record that are not in Gl_Account Table from the trialBalance table with the respective GL_acct Number where the amount under the respective gXXXX (in trial balance) is not zero
Let me explain it with an example. Keeping the above table in mind I want to fill the table GL_Account as
GL_Account
loc | gl_acct | HMISTOTAL
---------------------------------------
1400 | 1101 | 20
---------------------------------------
1400 | 1102 | 30
---------------------------------------
1500 | 1101 | 10
---------------------------------------
1500 | 1103 | 40
---------------------------------------
i have tried this query but it only the first record captured is entered into the gl_accountt table. I skipped the amount part for now.. but it is required.
insert into Gl_Account (loc,gl_acct,HMISTOTAL)
select * from (
select a.loc,
CASE
WHEN a.G1101 <> 0 THEN '1101'
WHEN a.G1102 <> 0 THEN '1102'
WHEN a.G1104 <> 0 THEN '1104'
WHEN a.G1151 <> 0 THEN '1151'
END AS gl_Acct
'0' as HMISTOTAL
FROM trialBalance a where NOT EXISTS
(SELECT 1 from GL_Account b WHERE b.loc = a.loc)) ab
thanks in advance.
