I am inserting a new row into my table. Is it possible to use the primary key (id) as part of the value of a column in this same row during the insert? For example, say I just inserted a new row with id of 6, is it possible to have the image_address column in that same row be something like "folder/6" with the 6 coming from the id? This is on an INSERT.
TABLE
id (primary key, auto increment)
image_address (I want this to include the id in it)