Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql query interview questions

SELECT EmpId
FROM EmployeeSalary
WHERE Project <>'P1';
Comment

sql queries questions

SELECT E.EmpFname, E.EmpLname, P.EmpPosition 
FROM EmployeeInfo E INNER JOIN EmployeePosition P ON
E.EmpID = P.EmpID AND P.EmpPosition IN ('Manager');
Comment

sql interview query questions

1
SELECT TOP N * FROM EmployeePosition ORDER BY Salary DESC;
Comment

sql query interview questions

1
SELECT SUBSTRING(EmpLname, 1, 4) FROM EmployeeInfo;
Comment

basic sql queries interview questions

1
SELECT EmpID FROM (SELECT rowno, EmpID from EmployeeInfo) WHERE MOD(rowno,2)=0;
Comment

basic sql queries interview questions

1
SELECT EmpID FROM (SELECT rowno, EmpID from EmployeeInfo) WHERE MOD(rowno,2)=1;
Comment

sql interview questions

SELECT * FROM Table_name WHERE EmpName like 'A%'
Comment

sql queries questions

SELECT SUBSTRING(Address, 1, CHARINDEX('(',Address)) FROM EmployeeInfo;
Comment

PREVIOUS NEXT
Code Example
Sql :: how to make oppointment table in database 
Sql :: apikey in pl sql 
Sql :: mysql update even / odd rows 
Sql :: ring MySQL presents the usage of MySQL_Autocommit(), MySQL_Commit() & MySQL_RollBack() functions. 
Sql :: inserting values with beekeeper get error null value in column createdAt violates not-null constraint 
Sql :: sqdqsd 
Sql :: check records older than 10 days 
Sql :: sql server agent not running 
Sql :: mysql table inspector command line 
Sql :: how many columns can be used for creating index? 
Sql :: get who is hired in january in sql 
Sql :: plsql listagg 
Sql :: could not find driver (SQL: PRAGMA foreign_keys = ON;) larave 
Sql :: sql create table with references not primary key 
Sql :: dasebase_url-postgres for windows 
Sql :: Downloading snowsql for Linux 
Sql :: selects all the columns from the sailors table 
Sql :: SQL LEFT JOIN With AS Alias 
Sql :: select all fields from table 
Sql :: SQL Copy Table Schema Only 
Sql :: sql tablo sp 
Sql :: Select all columns except one in MySQL? 
Sql :: join 
Sql :: oracle execute package dblink 
Sql :: get who is hired in february in sql 
Sql :: how to check if there is no database schema 
Sql :: kie business put user infos in database 
Sql :: python and mysql connectivity 
Sql :: phpmyadmin access denied 
Sql :: multiple values insert in sql 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =