Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SQL> create table table1 (emp_id number primary key);
Table created.
SQL> create table table2 (id number primary key, emp_id references table1 (emp_id) on delete cascade);
Table created.
SQL>