Search
 
SCRIPT & CODE EXAMPLE
 

SQL

get who is hired in specific month in sql

BY EXTENDING ABOVE QUERY , FIND OUT EVERYONE WHO IS HIRED IN JAN 
SELECT FIRST_NAME , HIRE_DATE 
FROM EMPLOYEES 
WHERE SUBSTR(HIRE_DATE, 4, 3) = 'JAN' ;
Comment

PREVIOUS NEXT
Code Example
Sql :: postgre regex exactly 1 characters 
Sql :: oracle test if 0 
Sql :: insert data mysql with cmd 
Sql :: synapse sql table set pk 
Sql :: Uncomment listen_address=localhost 
Sql :: find invalid datetime field 
Sql :: fill column postgresql 
Sql :: heavy table in mysql 
Sql :: kill thread 
Sql :: date query 
Sql :: alling a function from PL/SQL in a select statement in ORACLE 
Sql :: create table as select sql server error 
Sql :: mysql workbench cannot find password 
Sql :: sql implicit cursor 
Sql :: oracle pl/sql check if file exists 
Sql :: power bi find all ids not in other tables 
Sql :: php mysql set db collation 
Sql :: tsql create table with variable name 
Sql :: pl sql fetch 
Sql :: min:sec datediff mssql 
Sql :: subconjuntos SQL 
Sql :: oracle sql add column auto generated value 
Sql :: mysql service not starting 
Sql :: select a row include list of array with join two table SQL 
Sql :: mysql create schgema 
Sql :: mysql case sensitive 
Sql :: what is a foriegn key 
Sql :: acutal month year 
Sql :: sql update from another table join 
Sql :: mysql count with two joins 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =