What datatype should i choose for storing an Ip Address in a SQL Server?
By selecting the right datatype would it be easy enough to filter by IP address then?
|
3
|
What datatype should i choose for storing an Ip Address in a SQL Server? By selecting the right datatype would it be easy enough to filter by IP address then?
|
|||
|
|
|
|
The technically correct way to store IPv4 is Binary(4), since that is what it actually is (no, not even an INT32/INT(4)), the numeric textual form that we all know and love (255.255.255.255) being just the display conversion of it's binary content. If you do it this way, you will want functions to convert to and from the textual-display format: Here's how to convert the textual display form to binary:
And here's how to convert the binary back to the textual display form:
Here's a demo of how to use them:
Finally, when doing lookups and compares, always use the binary form if you want to be able to leverage your indexes. |
||||||
|
|
|
Realistically, you won't see IPv6 as mainstream for a while yet, so I'd prefer the 4 tinyint route. Saying that, I'm using varchar(48) because I have to use Otherwise. Mark Redman's answer mentions a previous SO |
||
|
|
|
|
Have a look at this answer: |
||
|
|
|
I usually use a plain old VARCHAR filtering for an IPAddress works fine. If you want to filter on ranges of IP address I'd break it into four integers. Kindness, Dan |
||||||||
|
|
|
You can use varchar. The length of IPv4 is static, but that of IPv6 may be highly variable. Unless you have a goog reason to store it as binary, stick with textual type. |
||
|
|