Amazon Interview Question for Technical Support Engineers


Team: AWS
Country: United States
Interview Type: In-Person




Comment hidden because of low score. Click to expand.
5
of 5 vote

Inner join returns common records between both the tables whereas left join returns all rows from left table & the matching rows from right table.

- Anonymous May 18, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 1 vote

INNER JOIN: Returns all rows when there is at least one match in BOTH tables
LEFT JOIN: Return all rows from the left table, and the matched rows from the right table
RIGHT JOIN: Return all rows from the right table, and the matched rows from the left table
FULL JOIN: Return all rows when there is a match in ONE of the tables

From W3Schools website.

- mahdi.oraei March 04, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Inner Join performs join on only common attributes of both the relation table.

Left is Outer Join, in which join is performed on all attributes of left table and NULL or matched rows of Right

- kesha.shah1106 May 30, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

R1(C1,C2) and R2(C1,C3)
If I do a inner join,it'll result into
r1.c1 r1.c2 r2.c1 r2.c2

And upon left join,all the entities from the above result set + the remaining from r1 will be produces as a result set.

- Pooja Karadgi August 03, 2014 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More