Mysql Hexadecimal Color Code Store in Binary Datatype Example
If you have thousands of record store, that time database size would be large. but you can some field can save your number of bites in the database.
you have color field then most of you choose string(6) data type and you wast 6 bites on every record, but you can save number of bites data by using BINARY(3) data type. following example through you can set data type for hexa color code with only allocate binary(3) on every records. first how to create table and assign data type with following query.
CREATE TABLE IF NOT EXISTS `colors` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`color_name` varchar(255) NOT NULL,
`color` BINARY(3) NOT NULL,
PRIMARY KEY (`id`)
);
when you want to insert then data at that time with using UNHEX() that function would convert in small size.
INSERT INTO `colors` (color_name, color) VALUES ('Green',UNHEX('f2a709'));
when you fetch or select all the records at that using HEX() that function would convert hexadecimal color code with full size.
SELECT color_name ,HEX(color) AS color FROM `colors`;
Try this and save db size......
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- PHP AngularJS MySQL Pagination Example
- PHP MySQL Column Sorting Example Tutorial
- PHP MySQL Integrate Fullcalendar Example Tutorial
- PHP Import Excel File into MySQL Database Tutorial
- How to Execute MySQL Query in Laravel?
- How to Add MySQL Trigger from Migration in Laravel?
- How to fetch this week records in MySql ?
- How to Check Empty or Null Data using MySQL Query?
- How to Copy One Table Data into Another Table using MySQL?
- How to count unique domains from email address field in MySQL ?
- Mysql procedure with pagination in laravel?
- Which MySQL Datatype use for Store an IP Address?