Login     Register

        Contact Us     Search

XLeratorDB/engineering Online Documentation

SQL Server function to convert area to square yards


SQYARDS
 
Updated: 01 December 2008 

Use SQYARDS to convert from acres, hectares, square feet, square inches, square meters, square miles, or square yards to square yards.
Syntax
SELECT [westclintech].[wct].[SQYARDS] (
  <@Area, float,>
 ,<@From_scale, nvarchar(4000),>)
Arguments
@Area
is any real number. @Area is an expression of type float or of a type that can be implicitly converted to float
@From_scale
is the description of the units for @Area. @From_scale must be a valid value as specified in area unit representations@From_scale must be of a data type that is implicitly convertible to varchar.
 
Return Types
float
Remarks
·         The following table is a representation of the conversion of one of the area units of measure into square yards:
acres
4840
square inches
0.000771605
square feet
0.111111111
square yards
1
square miles
3097600
square meters
1.19599005
hectares
11959.9005
 
·         Conversion of meters includes all the standard prefixes with kilo representing 1,000 and yocto representing 10E-24.
Example
 
select wct.SQYARDS(100, 'yd^2')
Here is the result set
----------------------
100
 
(1 row(s) affected)


Copyright 2008-2024 Westclintech LLC         Privacy Policy        Terms of Service