Why INSERT query is slower than SELECT query?

It is slower on INSERT because the db will check the row exists on the other table (the same with DELETE).

But not on SELECT.