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
⇒Boolean Values and Logical Operations in SQL Server Transact-SQL
2017-01-21, 836👍, 0💬
Popular Posts:
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To Import One Table Back from a Dump File in Oracle? If you only want to import one table back t...
Where to find answers to frequently asked questions on Storage Engines: MyISAM, InnoDB and BDB in My...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...