SQL Queries Interview Questions and Answers - Query Examples
SQL Queries Interview Questions and Answers - Query Examples
SQL Queries Interview Questions and Answers - Query Examples
Skip to content
Jump to main navigation and login
Jump to additional information
Home
Careers Jobs
Interview Questions
Placement Test
Seminar Topics
B.E Projects
Tutorials
Blog
Forum
Search
User Rating: 4 / 5
Details
Created: Tuesday, 26 February 2013 02:54
Last Updated: Friday, 20 December 2013 08:42
Hits: 95700
1
2
3
4
5
6
7
All Pages
Page 1 of 7
Frequently asked basic and advanced Top 80 + SQL Queries Interview Questions and Answers with Examples for Freshers and Experienced Java, PHP, .Net Developers and
DBA in Oracle, MySQL and SQL Server 2008 Database.
For Interview Questions on Advanced SQL Queries go to Page 5 and Page 6 of this article. For detailed
SQL Server Monitoring explanation of SQL functions visit SQL Tutorials.
www.dbainabox.com If the answers are same for Oracle, MySQL and SQL databases, only one query is specified. If the SQL Commands
differ for Oracle, MySQL and SQL Server, specific queries with respect to a database is provided.
Monitor, Alert, and Diagnose. Just $269
monitors all your sql servers Interview Questions on SQL are based on following two tables, Employee Table and Employee Incentive Table.
3. Get First_Name from employee table using alias name “Employee Name”
Oracle Equivalent of SQL Server SUBSTRING is SUBSTR, Query : select substr(FIRST_NAME,0,3) from employee
http://a4academics.com/interview-questions/397-top-100-database-sql-interview-questions-and-answers-examples-queries 1/2
2/3/2014 SQL Queries Interview Questions and Answers - Query Examples
Oracle Equivalent of SQL Server SUBSTRING is SUBSTR, Query : select substr(FIRST_NAME,0,3) from employee
SQL Server Equivalent of Oracle SUBSTR is SUBSTRING, Query : select substring(FIRST_NAME,0,3) from employee
MySQL Server Equivalent of Oracle SUBSTR is SUBSTRING. In MySQL start position is 1, Query : select substring(FIRST_NAME,1,3) from employee
Oracle Equivalent of SQL Server CHARINDEX is INSTR, Query : Select instr(FIRST_NAME,'o') from employee where first_name = 'John'
SQL Server Equivalent of Oracle INSTR is CHARINDEX, Query: Select CHARINDEX('o',FIRST_NAME,0) from employee where first_name = 'John'
MySQL Server Equivalent of Oracle INSTR is LOCATE, Query: Select LOCATE('o',FIRST_NAME) from employee where first_name = 'John'
9. Get FIRST_NAME from employee table after removing white spaces from right side
10. Get FIRST_NAME from employee table after removing white spaces from left side
Oracle,MYSQL Equivalent of SQL Server Len is Length , Query :select length(FIRST_NAME) from employee
SQL Server Equivalent of Oracle,MYSQL Length is Len, Query :select len(FIRST_NAME) from employee
12. Get First_Name from employee table after replacing 'o' with '$'
13. Get First_Name and Last_Name as single column from employee table separated by a '_'
Oracle Equivalent of MySQL concat is '||', Query : Select FIRST_NAME|| '_' ||LAST_NAME from EMPLOYEE
SQL Server Equivalent of MySQL concat is '+', Query : Select FIRST_NAME + '_' +LAST_NAME from EMPLOYEE
MySQL Equivalent of Oracle '||' is concat, Query : Select concat(FIRST_NAME,'_',LAST_NAME) from EMPLOYEE
14. Get FIRST_NAME ,Joining year,Joining Month and Joining Date from employee table
SQL Queries in Oracle, Select FIRST_NAME, to_char(joining_date,'YYYY') JoinYear , to_char(joining_date,'Mon'), to_char(joining_date,'dd') from EMPLOYEE
SQL Queries in SQL Server, select SUBSTRING (convert(varchar,joining_date,103),7,4) , SUBSTRING (convert(varchar,joining_date,100),1,3) , SUBSTRING (convert(varchar,joining_date,100),5,2) from EMPLOYEE
Prev
Next >>
Additional information
► SQL Database
► Access Database Tutorial
► SQL Server Tool
Featured Posts
Realted Articles
You are here: Home Interview Questions Database and SQL Interview Questions and Answers Top 80 + SQL Query Interview Questions and Answers with Examples
http://a4academics.com/interview-questions/397-top-100-database-sql-interview-questions-and-answers-examples-queries 2/2