I have my detail table as followed:
(pk) wbs_tag
(pk) r_tag
(pk) year
startmonth (empty)
duration (empty)
quantity (empty)
And a monthly_detail table as followed:
(pk) wbs_tag
(pk) r_tag
(pk) year
month
quantity
Data will be like:
Detail table:
wbs_tag = 1
r_tag = 1
year = 2000
Monthly_detail table:
wbs_tag = 1
r_tag = 1
year = 2000
{month, quantity} = {7, 4}, {8, 2}, {9, 3}
I want to update the startmonth field in the detail table
as:
Detail.startmonth = 7 (the first record value).
what should I do to archive this task.
Thanks,
saigonva
(pk) wbs_tag
(pk) r_tag
(pk) year
startmonth (empty)
duration (empty)
quantity (empty)
And a monthly_detail table as followed:
(pk) wbs_tag
(pk) r_tag
(pk) year
month
quantity
Data will be like:
Detail table:
wbs_tag = 1
r_tag = 1
year = 2000
Monthly_detail table:
wbs_tag = 1
r_tag = 1
year = 2000
{month, quantity} = {7, 4}, {8, 2}, {9, 3}
I want to update the startmonth field in the detail table
as:
Detail.startmonth = 7 (the first record value).
what should I do to archive this task.
Thanks,
saigonva