I have a requirement of inserting data into a table and one of the columns is seq_number. I have a where clause in the select query and I want to insert the max(seq_num)+1 for every record that I want to insert. The max of seq_num is giving me the max for the where clause and not the actual max from the table.
INSERT INTO TABLE_NAME
SELECT
NEWID(),
MAX(SEQ_ORD_R)+1, -- This should be the max from table irrespective of the where clause
CURRENT_TIMESTAMP,
CURRENT_TIMESTAMP
FROM TABLE_NAME
WHERE SOFA_K = 'FD5B6BE8-F1CF-42C0-9216-B13163413F96'