You can try using the below code:
INSERT INTO Table
( Event_ID
, col2
...
)
SELECT "155"
, col2
...
FROM Table WHERE Event_ID = "120"
In the above code, the col2, and other columns represent the remaining columns (the ones other than Event_ID) in the table.