What is JDBC? JDBC stands for Java Database Connectivity. JDBC provides the APIs for the Java programming language using which we can connect to the
Category: Database
How to create Triggers in MySQL? Triggers in MySQL are programs created on table which are invoked automatically when we perform any operation on that
What is View in MySQL? When we want to write a complex query that we are using multiple times in the code, instead of writing
What is Error Handling in MySQL? Error Handling in MySQL is mainly in stored procedures if any error occurs while executing the stored procedure code.
How to use IF… ELSE in MySQL? The IF… ELSE in MySQL executes code when a condition is TRUE, or a different code if the
What are Stored Procedures in MySQL? We have seen what MySQL is and how to write simple queries. MySQL also supports writing complex logic in
How to Create a Custom Function in MySQL? We have seen that MySQL has some predefined functions to use and get the required values. But