Skip to content

MySQL Tutorial

Learn MySQL

Menu
  • Home
  • Data types
  • Functions
    • Aggregate Functions
    • Cast Functions
    • Comparison Functions
    • DATE Functions
    • Flow Control Functions
    • Math functions
    • String Functions
    • Window Functions
    • REGEXP Functions
    • JSON Functions
    • XML Functions
    • Information Functions
    • Encryption Functions

Author: mysqltutor_05ut1l

MySQL CALL

January 7, 2024
| No Comments
| MySQL

The CALL statement in MySQL is used to execute a stored procedure. A stored procedure is a set of SQL statements that can be stored in the database and executed later. It allows you to encapsulate a series of SQL statements into a single named routine, providing modularity and reusability. Syntax Here’s the basic syntax […]

Read More »

MySQL CREATE PROCEDURE

January 7, 2024
| No Comments
| MySQL

In MySQL, the CREATE PROCEDURE statement is used to define and create a stored procedure. Stored procedures are self-contained blocks of SQL code that are stored in the database and can be executed multiple times. They are often used to encapsulate complex SQL operations or to perform repetitive tasks. Syntax The basic syntax of the […]

Read More »

MySQL System variables

January 7, 2024
| No Comments
| MySQL

MySQL system variables are configuration settings that control how the MySQL server operates. These variables can be set at server startup or at runtime using the SET statement. They can also be used in expressions to dynamically adjust server behavior. Types of MySQL System Variables MySQL system variables can be broadly categorized into three types: […]

Read More »

MySQL User-defined variables

January 7, 2024
| No Comments
| MySQL

MySQL allows users to define and use variables within SQL statements. These user-defined variables provide a way to store and manipulate data temporarily during the execution of a series of SQL statements. User-defined variables in MySQL are prefixed with the ‘@’ symbol. Here’s a basic overview of MySQL user-defined variables: Variable Declaration To declare a […]

Read More »

MySQL stored procedures

January 7, 2024
| No Comments
| MySQL

Stored procedures in MySQL are precompiled SQL statements that are stored in the database and can be executed later. They are used to encapsulate a set of SQL statements into a single unit, making it easier to manage and execute complex operations. MySQL stored procedures offer several advantages, including improved code reusability, enhanced security, and […]

Read More »

MySQL variables

January 7, 2024
| No Comments
| MySQL

MySQL variables are fundamental components of the MySQL database management system (DBMS) that serve as containers for storing temporary values during database operations. The MySQL variables are used to store and manage values temporarily during the execution of queries and scripts. These variables can be classified into two main types: user-defined variables and system variables. […]

Read More »

Posts pagination

Previous 1 … 3 4 5 … 39 Next

MySQL tutorial

  • MySQL Database
  • MySQL Create table
  • MySQL Insert
  • MySQL Update
  • MySQL Delete
  • MySQL Select
  • MySQL From
  • MySQL Where
  • MySQL Order By
  • MySQL Select distinct
  • MySQL AND
  • MySQL OR
  • MySQL IN
  • MySQL NOT IN
  • MySQL BETWEEN
  • MySQL LIKE
  • MySQL LIMIT
  • MySQL EXISTS
  • MySQL GROUP BY
  • MySQL HAVING
  • MySQL IS NULL
  • MySQL Joins
  • MySQL INNER JOIN
  • MySQL LEFT JOIN
  • MySQL RIGHT JOIN
  • MySQL CROSS JOIN
  • MySQL SELF JOIN
  • MySQL ROLLUP
  • MySQL Subquery
  • MySQL UNION
  • MySQL UNION ALL
  • MySQL EXCEPT
  • MySQL CASE
  • MySQL IF-THEN-ELSE

Recent Posts

  • MySQL SUBDATE function
  • MySQL STR_TO_DATE function
  • MySQL convert string to date
  • MySQL datetime format
  • MySQL create temporary table
  • MySQL current datetime
  • MySQL TRUNCATE
  • MySQL SHOW EVENTS
  • MySQL ALTER EVENT
  • MySQL DROP EVENT

© MySQL Tutorial 2025.