Hello,
I am using this query:
UPDATE COMMITTEES_REQUEST SET protocol_number =
(SELECT MAX(protocol_number) FROM COMMITTEES_REQUEST WHERE code_committee = 1)
WHERE record_number = 5 AND protocol_number IS NULL
And I would like to refine it like this:
protocol_number is a field which looks like this: 1/06, 2/06, 3/06.... where 06 is the current year.
I would like to take MAX(protocol_number) and do the update not on it but on it's next incremental, for example if MAX(protocol_number) returns 5/06 I would like the update to be 6/06.
More than that, I would like the query to check for the current year we are at, and if MAX(protocol_number) returns x/06 and we are in 2007 the update will set 1/07.
Is there any way to acheive all than in a single query?
I am using this query:
UPDATE COMMITTEES_REQUEST SET protocol_number =
(SELECT MAX(protocol_number) FROM COMMITTEES_REQUEST WHERE code_committee = 1)
WHERE record_number = 5 AND protocol_number IS NULL
And I would like to refine it like this:
protocol_number is a field which looks like this: 1/06, 2/06, 3/06.... where 06 is the current year.
I would like to take MAX(protocol_number) and do the update not on it but on it's next incremental, for example if MAX(protocol_number) returns 5/06 I would like the update to be 6/06.
More than that, I would like the query to check for the current year we are at, and if MAX(protocol_number) returns x/06 and we are in 2007 the update will set 1/07.
Is there any way to acheive all than in a single query?