Let's say I hava a table
object:
id, primary key auto-increment
obj_id, foreign key (object.id)
val, integer
Is it possible to insert a record with obj_id = id. Not having an error with foreign key constraint?
Insert into object (val) values (123)