January 21, 2009 at 5:18 pm
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.
January 21, 2009 at 5:27 pm
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)
1921681100
Lowell
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply