Collections:
Performing Comparison on Exact Numbers in SQL Server
How To Perform Comparison on Exact Numbers in SQL Server Transact-SQL?
✍: FYIcenter.com
Comparison operations on exact numbers of data types: BIT, INT, NUMERIC, etc., are very easy to understand. Here are some simple examples:
-- BIT value comparison DECLARE @x BIT, @y BIT; SET @x = 0; SET @y = 1; SELECT CASE WHEN @x > @y THEN 'True' ELSE 'False' END; GO False DECLARE @x INT, @y INT; SET @x = -5; SET @y = 9; SELECT CASE WHEN @x > @y THEN 'True' ELSE 'False' END; GO False DECLARE @x NUMERIC(9,2), @y NUMERIC(9,2); SET @x = -5.25; SET @y = -5.15; SELECT CASE WHEN @x > @y THEN 'True' ELSE 'False' END; GO False
⇒ Performing Comparison on Floating Point Numbers in SQL Server
⇐ What Are Comparison Operations in SQL Server
⇑ Boolean Values and Logical Operations in SQL Server Transact-SQL
2017-01-21, 2306🔥, 0💬
Popular Posts:
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Convert Characters to Numbers in Oracle? You can convert characters to numbers by using the T...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
Where to find answers to frequently asked questions on Storage Engines: MyISAM, InnoDB and BDB in My...