Search
 
SCRIPT & CODE EXAMPLE
 

SQL

get all employees if name ends with in sql

FIND OUT ALL FIRST_NAME AND LAST NAME FROM EMPLOYEES TABLE 
-- IF THE FIRST NAME START WITH A AND LAST NAME END WITH n

SELECT FIRST_NAME , LAST_NAME 
FROM EMPLOYEES 
WHERE FIRST_NAME LIKE 'A%' AND LAST_NAME LIKE '%n'  ; 
Comment

PREVIOUS NEXT
Code Example
Sql :: Show mysql account privilleges 
Sql :: dbms interview questions 
Sql :: sql query use select name inside where clause 
Sql :: sql server assembly 
Sql :: How should I pass a table name into a stored proc? 
Sql :: what i ssql 
Sql :: convert sqlalchemy.util._collections to list of string 
Sql :: comma seperated join mssql 
Sql :: plsql to generate all combinations of specified number of characters in string 
Sql :: dump sql databse import export 
Sql :: oracle rolling back 
Sql :: mysql select bottom 10 rows 
Sql :: c# add a textbox in mysql select 
Sql :: pastashoppen 
Sql :: sql create table with references not primary key 
Sql :: distinct 
Sql :: adding primery key constraint to a column 
Sql :: oracle sql developer closed connection 
Sql :: transaction and commit trong sql server 
Sql :: oracle flush Shared Pool 
Sql :: funktion LOWER/UPPER sql 
Sql :: liquibase default-schema in sql 
Sql :: concatenate text from multiple rows into a single text stringin SQL Server 
Sql :: what is the difference between an embedded database and a normal 
Sql :: mysql grant user wildcard database 
Sql :: The fetch keyword oracle 
Sql :: psql 
Sql :: python sqlalchemy get the last row id 
Sql :: in operator in sql 
Sql :: sql count if 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =