How we can open/close JDBC connections? In the previous blog, we have seen JDBC and how to connect to MySQL from Java. In this blog,
Category: MySQL
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