proper method of using a "price" field

Local time
Today, 17:15
Joined
Aug 3, 2005
Messages
66
hello,

table1_ProductList -> has the following fields:
ID (primary key,auto number)
SERNO(text)
DESCR(text)
PRICE(currency)

table2_Jobcard -> has the following fields:
ID (primary key,auto number)
PROD_DESCR_ISSUED (droplist, get 'prod desc' value from table1)
PROD_QTY_ISSUED (decimal)
DATE_ISSUED (datetime)
___________________
PROBLEM/QUESTION :

Let's say I change the PRICE(in table1) on 1 Jan 2005, then all EXISTING records (before 1/1/2004) will also be updated with the new(changed) PRICE.
This is WRONG, right?

What is the correct procedure to use/update the PRICE value ??
Any advice will be greatly appreciated.

Regards,
Jamie.
 

Users who are viewing this thread

Back
Top Bottom