*
* If a character fields is used as a number field, it will not sort properly as
* "200" comes before "5" with string sorting. This function converts all values
* such that values that are entirely numeric will sort correctly and before
* values that contain other characters.
*
*/
CREATE FUNCTION CharToNumber(@MyValue varchar(15)) RETURNS char(15) AS
BEGIN
IF ISNUMERIC(@MyValue) = 1
begin
DECLARE @MyValLength int
SET @MyValLength = len(@MyValue)
IF @MyValLength > 15
SET @MyValue = left(@MyValue,15)
ELSE IF @MyValLength < 15
SET @MyValue = space(15-@MyValLength) + @MyValue
END
RETURN @MyValue
END
GO
Subscribe to:
Post Comments (Atom)
If you’re using Visual Studio to build your .NET MAUI app on a Mac, locating the IPA (iOS App Package) file can be a bit tricky
If you’re using Visual Studio to build your .NET MAUI app on a Mac , locating the IPA (iOS App Package) file can be a bit tr...
-
Sample Code: if (Email.Default.IsComposeSupported) { string subject = "Hello!"; string body = "Excellent!"; ...
-
If you’re using Visual Studio to build your .NET MAUI app on a Mac , locating the IPA (iOS App Package) file can be a bit tr...
-
Charts for Windows and web including .Net MAUI LiveCharts - LiveCharts2 (lvcharts.com)
No comments:
Post a Comment