MySQL COALESCE and NULLIF Function

We will be discussing MySQL COALESCE and NULLIF Function in this post. We will also be showing  MySQL COALESCE  examples and NULLIF MySQL Function example MySQL COALESCE Function COALESCE  in MySQL is a very useful function to select first not null values from the list of values Syntax COALESCE(val1, val2,val3,…valn) The above syntax is equivalent […]

MySQL COALESCE and NULLIF Function Read More »

Oracle delete cascade: ORA-02292 Integrity Constraints error

If you are deleting rows from a table that is referenced by the foreign key of another table, then you will get integrity constraints errors(ORA-02292). This can be avoided by using DELETE CASCADE in Oracle Let’s take an example. In this, we will first create the sample tables, then insert rows and then try for

Oracle delete cascade: ORA-02292 Integrity Constraints error Read More »

Scroll to Top