Hi,
I am porting a MySQL database over to Oracle where I need to add the following constraint :
<blockquote>ALTER TABLE customer ADD CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES address(address_id) ON UPDATE CASCADE</blockquote>
How do we implement in Oracle.
Many thanks !!