Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql is not like

SELECT * FROM emp
  WHERE name NOT LIKE 'a%'			-- not starting with a
  AND name NOT LIKE '%a'			-- not ending with a
  AND name NOT LIKE '%a%'			-- not containing  a
  AND upper(name) NOT LIKE '%A%'	-- not containing  a or A
Comment

SQL is not like

SELECT * FROM Student
WHERE FirstName NOT LIKE '%B%'
Comment

SQL NOT LIKE Operator

SELECT *
FROM Customers
WHERE country NOT LIKE 'USA';
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql login 
Sql :: jsonb 
Sql :: sql to linq converter 
Sql :: sql query examples 
Sql :: oracle exchange subpartition 
Sql :: query params sql insert python f string 
Sql :: pl sql revoke role from user 
Sql :: are both the inserted and deleted tables used in update trigger 
Sql :: SQL Syntax of RIGHT JOIN 
Sql :: add column to all tables after first column mysql 
Sql :: sql commands in android 
Sql :: sql select all 
Sql :: oracle sql winter time change 
Sql :: psql fetch all rows with null 
Sql :: deduplicate delimited string bigquery 
Sql :: homebrew nysql launch 
Sql :: SQlite script 
Sql :: basic structure of sql expression having clause 
Sql :: concatenate sqlites 3 
Sql :: radius search with point data in mysql 
Sql :: and and or in where condition 
Sql :: postgresql grant alter table to user 
Sql :: time mysql w3 
Sql :: hierachichal sql query 
Sql :: enable mysql remote connection to two specific ip address 
Sql :: vbscript create ADODB.Connection 
Sql :: mysql export data with a where clause 
Sql :: mysql desactivar trigger 
Sql :: Sql select by content lenght 
Sql :: mysql cannot access localhost 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =