Viewing 5 posts - 1 through 5 (of 5 total)
Solution found!!!
SELECT C.clientid, T.charge_type
FROM Clients AS C
CROSS JOIN ChargeCategories AS T
EXCEPT
SELECT clientid, charge_type
FROM Charges;
March 4, 2010 at 12:13 pm
This is an old system and I have no control over the existing tables, I cannot ask for changes to the procedures that import that data. What we are trying...
March 4, 2010 at 11:45 am
Lutz,
Just what the Dr ordered...!
Thanks,
Vicar
March 1, 2010 at 8:07 am
One record in the Batches table (Header values), one record in the Clients table (Record values - this data happens to contain only one client) and six records in the...
February 26, 2010 at 7:17 am
Lutz,
My project is not realy for agriculture but its nature prohibits me from using anything that resembles its type so I have made many changes to the original values in...
February 25, 2010 at 2:22 pm
Viewing 5 posts - 1 through 5 (of 5 total)