Dear all programmers
I’ve search all over Google and have not found an answer.
My question is.........
I have two DBF tables called product and ullage. The user enters data from products table into ullage, by searching for product id and adds their count into the ullage table. This part is working
The question is how can I display the products table with all the prod_ID, Desc and price with Counts from the ullage table but were there is no count in the ullage table these product will be displayed but with no count number.
The Tables....
Product table
Prod_ID | Desc |price
1 Food 5.99
2 Drink 3.99
3 Laptop 50.49
4 Desktop 100
Ullage table
Prod_ID | Count
1 1
2 -3
Result ...........
Prod_ID | Desc |price|Count
1 Food 5.99 1
2 Drink 3.99 -3
3 Laptop 50.49
4 Desktop 100