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

Category: MySQL

Learn MySQL Tutorial

MySQL MEDIUMINT

December 23, 2023
| No Comments
| MySQL

In MySQL, the MEDIUMINT data type is used to store integer values within a specific range. It is a fixed-width integer type that occupies 3 bytes of storage. This means that it can represent a range of values larger than the smaller TINYINT and SMALLINT types, but smaller than the INT type. The MEDIUMINT type […]

Read More »

MySQL SMALLINT

December 23, 2023
| No Comments
| MySQL

In MySQL, the SMALLINT data type is used to store integer values within a specified range. It is a fixed-point data type, which means that it stores whole numbers without any decimal places. The SMALLINT data type occupies 2 bytes of storage and can store values ranging from -32,768 to 32,767 (signed) or 0 to […]

Read More »

MySQL TINYINT

December 23, 2023
| No Comments
| MySQL

MySQL TINYINT is a data type used to store integer values that are small in size. It is a 1-byte integer data type, which means it can store values in the range of -128 to 127 for signed TINYINT and 0 to 255 for unsigned TINYINT. The TINYINT data type is commonly used when you […]

Read More »

MySQL NUMERIC

December 22, 2023
| No Comments
| MySQL

In MySQL, the NUMERIC data type is used to store numeric values with precision and scale. It is often used for representing fixed-point numbers where precision is critical. The NUMERIC data type is synonymous with DECIMAL in MySQL, and both can be used interchangeably. Here’s a breakdown of the key characteristics of the NUMERIC data […]

Read More »

MySQL DOUBLE

December 22, 2023
| No Comments
| MySQL

In MySQL, the DOUBLE data type is used to store double-precision floating-point numbers. It is a numeric data type that can represent a wide range of values with a high degree of precision. Double-precision means that these numbers are stored with twice the precision of the FLOAT data type. DOUBLE key points Here are some […]

Read More »

MySQL FLOAT

December 22, 2023
| No Comments
| MySQL

The MySQL FLOAT data type is a numeric data type used to store single-precision floating-point numbers. Floating-point numbers are those that have a decimal point or are expressed in exponential notation. The FLOAT data type is commonly used when precision is not a critical concern, and storage efficiency is important. Here are some key characteristics […]

Read More »

Posts pagination

Previous 1 … 31 32 33 … 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.