
Asked in TCS
Show me the details of newly joined employees based on two tables: the employee table and the salary table, where employee ID is the foreign key.

AnswerBot
1mo
Retrieve newly joined employee details by joining employee and salary tables using Emp ID as the foreign key.
Use SQL JOIN to combine employee and salary tables on Emp ID.
Example SQL query: SELECT e.*,...read more
Mohan Gonnabathula
1y
SELECT Employee.*, Salary.*
FROM Employee
INNER JOIN Salary ON Employee.EmpID = Salary.EmpID
ORDER BY Employee.JoiningDate DESC;
Help your peers!
Add answer anonymously...
Top Azure Data Engineer Interview Questions Asked at TCS
Q. What are your responsibilities at your current company?
Q. Write an SQL query based on the input.
Q. What is the difference between Blob storage and Azure Data Lake Storage (ADLS)?
Interview Questions Asked to Azure Data Engineer at Other Companies
Top Skill-Based Questions for TCS Azure Data Engineer
Big Data Interview Questions and Answers
250 Questions
Cloud Computing Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Data Engineering Interview Questions and Answers
100 Questions
Spark Interview Questions and Answers
50 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

