Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by HDFC Bank Team. If you also belong to the team, you can get access from here

HDFC Bank Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

HDFC Bank SQL Developer Interview Questions and Answers

Updated 4 Oct 2024

HDFC Bank SQL Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

All the basic questions of SQL like joins, index, different between in where and having etc

Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 17 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Sql based question, tables, joins, working experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - DDL and DML commands
Delete and truncated difference

SQL Developer Interview Questions Asked at Other Companies

asked in BNP Paribas
Q1. How is a change request in application serviced by development te ... read more
asked in BNP Paribas
Q2. Write down a procedure to return a certain series (99, 96, 93, .. ... read more
asked in BNP Paribas
Q3. Given sample data on two tables, write down the result sets of al ... read more
asked in Capgemini
Q4. 2. Query optimization techniques? 3. Types of schemas and differe ... read more
asked in HCLTech
Q5. Difference between truncate and drop with more details. eg: 'A' t ... read more

I applied via Referral and was interviewed in Aug 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What are joins and types of joins?
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column.

    • Types of joins include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Right join returns all rows from the right table and matching rows from the left table.

    • Full outer join returns all row...

  • Answered by AI
  • Q2. What is index how to you creat an index?
  • Ans. 

    An index is a database object that improves the speed of data retrieval operations on a table.

    • Indexes are created on columns of a table.

    • Creating an index involves specifying the table name, column name, and index type.

    • Types of indexes include clustered, non-clustered, unique, and full-text indexes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be a wrotten test for which you will have to study JOIN, MERGE, INDEX, WHEN,WHERE,IN,LIKE,CASE and from W3C school

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview before Sep 2019.

Interview Questionnaire 

8 Questions

  • Q1. 1 tell me about your self?
  • Q2. Why you want work at this company?
  • Q3. Why should I hire you?
  • Q4. If you are experience person----why are you looking for a job company change?
  • Q5. What are your salary requirements?
  • Q6. What is your ambition?
  • Q7. How could be you contribute to our company if you're selected?
  • Q8. Finally do you have any questions to ask me

Interview Preparation Tips

Interview preparation tips for other job seekers - * Research the industry and company
* Clarify your are selling points ex:-(good
communication skills)
* And reason you the job
* Prepare for common interview questions
* Practice---practice---practice and be confident
At the time of interview time.

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. What do you know about banking/credit cards
  • Ans. 

    Banking involves managing financial transactions, while credit cards allow users to borrow money for purchases.

    • Banking involves depositing and withdrawing money, managing accounts, and providing loans.

    • Credit cards allow users to borrow money for purchases and pay it back with interest.

    • Credit cards often come with rewards programs or cash back incentives.

    • Credit card debt can accumulate quickly and lead to financial diff

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Telephonic interview and face to face interview was taken. Overall smooth interview process, and asked about credit cards and banking industry for interview questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple algorithm question about sorting

Round 2 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. WHAT have you done
  • Ans. 

    I have successfully managed multiple projects and teams, resulting in increased efficiency and productivity.

    • Led cross-functional teams to successfully launch new products

    • Implemented process improvements that resulted in a 20% increase in productivity

    • Managed a budget of $1 million for a marketing campaign

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Why IDFC and abouut
  • Ans. 

    IDFC is a leading financial institution in India known for its innovative financial solutions and commitment to sustainable development.

    • IDFC is a well-established financial institution in India with a strong reputation in the market.

    • They are known for their focus on providing innovative financial solutions to their clients.

    • IDFC has a track record of supporting sustainable development initiatives in the country.

    • The comp...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Banking questions

I applied via Campus Placement and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is static in java?
  • Ans. 

    Static is a keyword in Java used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q2. Write a program to replace consecutive same character by single '$' . for e.g. string='Heelo Wworldd'. Output- H$lo $orl$.
  • Ans. 

    The program replaces consecutive same characters in a string with a single '$'.

    • Iterate through each character in the string

    • Compare the current character with the next character

    • If they are the same, replace the next character with '$'

    • Continue until the end of the string

  • Answered by AI
  • Q3. Difference between Function overloading and Function overrriding
  • Ans. 

    Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class implement a method with the same name and parameters as a method in its base class.

    • Function overloading is used to provide different ways of calling a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a derived class...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read all OOPs concept before going to interview. Prepare SQL also.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Regarding previous work experience
  • Q2. Expected CTC and job description
  • Ans. 

    Expected CTC and job description

    • Expected CTC is negotiable based on job responsibilities and experience

    • Job description includes managing team, developing strategies, and achieving targets

    • Salary range for similar positions in the industry is between $X and $Y

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident even if you do not know the answer , confidence is the Key
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Behavioral 

(2 Questions)

  • Q1. Self introduction
  • Q2. Excel realated que

Interview Preparation Tips

Interview preparation tips for other job seekers - Manager interview round

HDFC Bank Interview FAQs

How many rounds are there in HDFC Bank SQL Developer interview?
HDFC Bank interview process usually has 1-2 rounds. The most common rounds in the HDFC Bank interview process are Coding Test and HR.
How to prepare for HDFC Bank SQL Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at HDFC Bank. The most common topics and skills that interviewers at HDFC Bank expect are Cost Reduction, Data Warehousing, ETL, MSBI and Revenue Generation.
What are the top questions asked in HDFC Bank SQL Developer interview?

Some of the top questions asked at the HDFC Bank SQL Developer interview -

  1. What are joins and types of joi...read more
  2. What is index how to you creat an ind...read more

Tell us how to improve this page.

HDFC Bank SQL Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 647 Interviews
IndusInd Bank Interview Questions
3.5
 • 607 Interviews
Bandhan Bank Interview Questions
3.7
 • 542 Interviews
Yes Bank Interview Questions
3.7
 • 430 Interviews
View all
HDFC Bank SQL Developer Salary
based on 81 salaries
₹1 L/yr - ₹7 L/yr
45% less than the average SQL Developer Salary in India
View more details

HDFC Bank SQL Developer Reviews and Ratings

based on 4 reviews

3.2/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

2.7

Salary

4.6

Job security

4.1

Company culture

2.5

Promotions

3.0

Work satisfaction

Explore 4 Reviews and Ratings
Deputy Manager
15.1k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Manager
10.2k salaries
unlock blur

₹5 L/yr - ₹14.6 L/yr

Assistant Manager
9.4k salaries
unlock blur

₹1.7 L/yr - ₹7.2 L/yr

Relationship Manager
7.8k salaries
unlock blur

₹2.4 L/yr - ₹11.7 L/yr

Senior Manager
6.3k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Explore more salaries
Compare HDFC Bank with

ICICI Bank

4.0
Compare

State Bank of India

3.8
Compare

Axis Bank

3.8
Compare

Kotak Mahindra Bank

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview