I have a table (titled: sessions) in a database whose 1st column contain numeric ip addresses like:
_____________
| srcIP |
-------------
| 167973143 |
| 167973187 |
| 167971450 |
-------------
To display IP addresses i am using following query
mysql> select srcIP from sessions;
I should use INET_NTOA to get the dotted ip addresses but what should be the query for displaying the whole column with dotted ip addresses?