SQL Tutorial: SQL Query Interview Questions With Answers
SQL Tutorial: SQL Query Interview Questions With Answers
Our SQL tutorial will teach you how to use SQL in: MySQL, SQL Server,
MS Access, Oracle, Sybase, Informix, Postgres, and other database
systems.
SELECT FullName
FROM EmployeeDetails
WHERE EmpId IN
(SELECT EmpId FROM EmpolyeeSalary
WHERE Salary BETWEEN 5000 AND 10000);
Also, we can use LEFT which returns the left part of a string till specified number of
characters.