I have two tables on my database and both of them hold some tasks to be done by the user, the first table named taches
and the second one admin_taches
and both of them contain a column named task_id which is unique in its table
Is there a possibliy for me to make the column task_id unique in both tables ? I need the value of task_id to be unique ! How can i achieve this.
I'm using Oracle WorkBench as IDE for my database
Edit : The id is auto-incremented on insert in each table