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 :: list column names of multiple tables psql 
Sql :: convert sql to linq query online 
Sql :: BSD sed: extra characters at the end of d command 
Sql :: insert into one table from another table in oracle 
Sql :: PBI TO SQL 
Sql :: get id if is not equal in certain table 
Sql :: could not find driver (SQL: PRAGMA foreign_keys = ON;) larave 
Sql :: sparql year function 
Sql :: composite primary key sql 
Sql :: localhost ERROR 2006 (HY000) at line 1163: MySQL server has gone away 
Sql :: python sqlalcahmey compare datetime using AND_ or OR_ 
Sql :: sql alchemy get last n elements 
Sql :: hex string sql becomes int64 
Sql :: join mysql 
Sql :: drop tables from local table database postgres 
Sql :: sql "List the contact methods found in the Contact table.For each contact method, list how many people chose that contact method." 
Sql :: TSQL select 50 records at a time 
Sql :: how to type a blank discord messgae 
Sql :: update having mysql 
Sql :: how to drop mili second in sql 
Sql :: postgres grep entire database 
Sql :: how to check table engine in mysql 
Sql :: "Edad en Oracle" 
Sql :: where to find job 0x.. in ddlevents 
Sql :: SQL Manipulação de Tabelas Constraint 
Sql :: how to fetch first 10 rows in sql 
Sql :: mysql order by desc 
Sql :: oracle sql first day of quarter 
Sql :: mysql stand for 
Sql :: Error in connection_import_file(conn@ptr, name, value, sep, eol, skip) : RS_sqlite_import: test.csv line 2 expected 11 columns of data but found 1 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =