Category: MySQL Tutorial

python tutorials and learn python

Created with Sketch.

A Complete Guide To MySQL DATETIME Data Type

A Complete Guide To MySQL DATETIME Data Type Summary: in this tutorial, you will learn about MySQL DATETIME data type and how to use some handy functions for manipulating DATETIME effectively. Introduction to MySQL DATETIME data type You use MySQL DATETIME to store a value that contains both date and time. When you query data from a DATETIME…
Read more

Mastering MySQL TIME Data Type

Mastering MySQL TIME Data Type Summary: in this tutorial, we will introduce you to the MySQL TIME data type and show you useful temporal functions to manipulate time data effectively. Introduction to MySQL TIME data type MySQL uses the ‘HH:MM:SS’ format for querying and displaying a time value that represents a time of day, which is…
Read more

The Ultimate Guide To MySQL DATE and Date Functions

The Ultimate Guide To MySQL DATE and Date Functions Summary: in this tutorial, we will introduce you to the MySQL DATE data type and show you some useful date functions to handle the date data effectively. Introduction to MySQL DATE data type MySQL DATE is one of  the five temporal data types used for managing…
Read more

The Basics Of MySQL TEXT Data Type

The Basics Of MySQL TEXT Data Type Summary: in this tutorial, you will learn how to use MySQL TEXT for storing text data in the database table. Introduction to MySQL TEXT data type Besides CHAR and VARCHAR character types, MySQL provides us with TEXT type that has more features which CHAR and VARCHAR cannot cover.…
Read more

The Essential Guide to MySQL VARCHAR Data Type

The Essential Guide to MySQL VARCHAR Data Type Summary: this tutorial introduces you to the MySQL VARCHAR data type and discusses some important features of VARCHAR. Introduction to MySQL VARCHAR data type MySQL VARCHAR is the variable-length string whose length can be up to 65,535. MySQL stores a VARCHAR value as a 1-byte or 2-byte…
Read more

MySQL CHAR Data Type

MySQL CHAR Data Type Summary: in this tutorial, you will learn about MySQL CHAR data type and how to apply it in your database table design. Introduction to MySQL CHAR data type The CHAR data type is a fixed-length character type in MySQL. You often declare the CHAR type with a length that specifies the…
Read more

An Introduction to MySQL BOOLEAN Data Type

An Introduction to MySQL BOOLEAN Data Type Summary: this tutorial shows you how to use MySQL BOOLEAN data type to store Boolean values, true and false. Introduction to MySQL BOOLEAN data type MySQL does not have built-in Boolean type. However, it uses TINYINT(1) instead. To make it more convenient, MySQL provides BOOLEAN or BOOL as…
Read more

Pramatic Uses of MySQL BIT Data Type

Pramatic Uses of MySQL BIT Data Type Summary: in this tutorial, you will learn about MySQL BIT data type and how to use it to store BIT data in a table. Introduction to MySQL BIT data type The BIT type that allows you to store bit values. Here is the syntax: BIT(n) Code language: SQL…
Read more

MySQL DECIMAL Data Type

MySQL DECIMAL Data Type Summary: in this tutorial, we will introduce you to the MySQL DECIMAL data type and how to use it effectively in your database table. Introduction to MySQL DECIMAL data type The MySQL DECIMAL data type is used to store exact numeric values in the database. We often use the DECIMAL data…
Read more

MySQL INT Data Type

MySQL INT Data Type Summary: in this tutorial, you will learn about MySQL INT or integer data type and how to use it in your database table design. In addition, we will show you how to use the display width and ZEROFILL attributes of an integer column. Introduction to MySQL INT type In MySQL, INT…
Read more