Breakdown IP Addresses

  • Does anyone have a way to breakdown an IP address to the numbers in separate fields no matter how many numbers are in between the dots?

    Thanks in advance for your help.

  • a builtin function called PARSENAME can do this for you...irt was designed to parse dbname.owner.table.columnname, but works greate for IPs:

    declare @val varchar(20)

    set @val='192.168.1.100'

    select parsename(@val,4),parsename(@val,3),parsename(@val,2),parsename(@val,1)

    192 168 1 100

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply