MySQL – INT Table of content The MySQL INT Data Type The MySQL INT data type is used to store whole numbers without the decimal places (integers). However, MySQL provides various integer data types, such as TINYINT, SMALLINT, MEDIUMINT, and BIGINT to cater to different ranges of whole numbers. The following table illustrates the characteristics […]
Category Archives: mysql
MySQL – SHOW TRIGGERS Table of content Triggers in MySQL are stored programs similar to procedures. These can be created on a table, schema, view and database that are associated with an event and whenever an event occurs the respective trigger is invoked. MySQL provides a statement to list out all the existing triggers present […]
MySQL – TINYINT Table of content The MySQL TINYINT Data Type The MySQL TINYINT data type is used to store integer values within a very small range. It occupies just 1 byte (8 bits) of storage and can hold values from -128 to 127 for signed TINYINT or 0 to 255 for unsigned TINYINT. When […]