Answers for "sql comparison string"

SQL
1

sql compare strings

SELECT * FROM table WHERE Column = 'test';			-- can use index
SELECT * FROM table WHERE Column LIKE '%test%';		-- can't use index
SELECT * FROM table WHERE CONTAINS(Column, 'test'); -- faster with full text index
Posted by: Guest on April-06-2021
0

sql comparison operators

> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
<> Not equal to
Posted by: Guest on January-07-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language