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 VARBINARY

December 26, 2023
| No Comments
| MySQL

MySQL VARBINARY is a data type that stores variable-length binary data. It is similar to the VARCHAR data type, but while VARCHAR is used for storing variable-length character strings, VARBINARY is specifically designed for storing binary data. This can include images, audio, video, or any other type of binary information. Here are some key features […]

Read More »

MySQL BINARY

December 23, 2023
| No Comments
| MySQL

The MySQL BINARY data type is a fixed-length binary string type that stores binary data as a sequence of bytes. Unlike the variable-length binary string type VARBINARY, which can store binary data of varying lengths, the BINARY type requires a fixed length to be specified when defining a column. Here are some key characteristics and […]

Read More »

MySQL TEXT

December 23, 2023
| No Comments
| MySQL

In MySQL, the TEXT data type is used to store large amounts of textual data. It is a versatile data type that can store variable-length character strings. The TEXT type comes in several variations, each designed to accommodate different sizes of text. These variations include TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. Here’s an overview of each […]

Read More »

MySQL VARCHAR

December 23, 2023
| No Comments
| MySQL

The VARCHAR data type in MySQL is commonly used to store variable-length character strings. The acronym VARCHAR stands for Variable Character. Unlike fixed-length character types such as CHAR, which reserve a fixed amount of storage regardless of the actual data length, VARCHAR dynamically adjusts its storage based on the length of the data it contains. […]

Read More »

MySQL CHAR

December 23, 2023
| No Comments
| MySQL

The CHAR data type in MySQL is used to store fixed-length strings. When you define a column with the CHAR data type, you specify a fixed length for the string, and any shorter values are padded with spaces to meet that length. This ensures that the stored data always occupies the specified number of characters. […]

Read More »

MySQL BIGINT

December 23, 2023
| No Comments
| MySQL

The BIGINT data type in MySQL is used to store integer values that are larger than the range supported by the INT data type. It is an extension of the INT data type and can store 64-bit signed integers, allowing for a significantly larger range of values. The BIGINT data type is commonly used when […]

Read More »

Posts pagination

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