Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
ಮಲ್ನಾಡಾಚ್ ಕೊಂಕ್ಣೊ
.
Toggle Highlighting
SQL
CREATE FUNCTION dbo.IntegerToIPAddress (@IP AS bigint) RETURNS varchar(15) AS BEGIN DECLARE @Octet1 bigint DECLARE @Octet2 tinyint DECLARE @Octet3 tinyint DECLARE @Octet4 tinyint DECLARE @RestOfIP bigint SET @Octet1 = @IP / 16777216 SET @RestOfIP = @IP - (@Octet1 * 16777216) SET @Octet2 = @RestOfIP / 65536 SET @RestOfIP = @RestOfIP - (@Octet2 * 65536) SET @Octet3 = @RestOfIP / 256 SET @Octet4 = @RestOfIP - (@Octet3 * 256) RETURN(CONVERT(varchar, @Octet1) + '.' + CONVERT(varchar, @Octet2) + '.' + CONVERT(varchar, @Octet3) + '.' + CONVERT(varchar, @Octet4)) END select dbo.IPAddressToInteger('127.0.0.1')
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...