Which MySQL Datatype use for Store an IP Address?
If you want to store IP address in mysql database then don’t mistake to use varchar datatype because you can use INT UNSIGNED 4(BYTE) datatype. using integer datatype you can save more space in database.
when you fire insert query at that time use INET_ATON() and select query at that time INET_NTOA() use. how to use this function given bellow example.
Create Table :
CREATE TABLE IF NOT EXISTS `ip_addresses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ip_address` INT(4) UNSIGNED NOT NULL,
PRIMARY KEY (`id`)
);
Insert Data :
INSERT INTO `ip_addresses` (`ip_address`) VALUES (INET_ATON("127.0.0.1"));
Select Data :
SELECT id, INET_NTOA(`ip_address`) as ip FROM `ip_addresses`;
Try this, this is a very simple.......
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 MySQL Column Sorting Example Tutorial
- PHP MySQL Image Gallery CRUD Example
- PHP MySQL Highcharts Chart Example
- How to Get Filename from File Path in MySQL Query?
- How to Get IP Address in Codeigniter?
- How to Get IP Address in JQuery?
- How to Get User IP Address in PHP?
- How to Execute MySQL Query in Laravel?
- How to Get IP Address in Laravel?
- Mysql Hexadecimal Color Code Store in Binary Datatype Example