Tip 1: Don't try to cover everything, go with one or two skills to master it and have some general knowledge about others.
Tip 2: Do a project along with everything you learn. Practical exposure is what organizations demand.
Tip 3: Do not ignore soft skills at all. Many underestimate the magic of soft skills in getting selected over others.
Tip 1: Resume should not be more than 1 or 2 pages. All information should be provided in the form of bullets and numbered in a precise manner and not just in long paragraphs with detailing for every aspect.
Tip 2: The resume should be easily readable with formal fonts and design, and should not contain false information.
It was an hour-long online test that can be done between 10 am to 5 pm anytime on the mentioned day. There were three sections where first two were elimination sections.
It was a video interview where some database questions were asked and problems were given to solve. The questions were pretty simple and required database logic to be applied.
1. Write a query where you have to show the joining of three tables using joins.
2. Write a query where the difference between group by and order by is depicted.
3. What are DML, DCL, and DDL. Explain with examples.
4. What is the difference between SQL, MY SQL, and PL SQL.
5. Write a query by using LIMIT.
Tip 1: Theoretical questions can be answered with examples
Tip 2: The query must be as short and precise as possible.
Tip 3: SQL queries and database knowledge is relevant to learning.
Ques - Write a SQL query to find the second highest salary from a table.
I used the concept of subquery in this.
To find the highest salary in the table the query is:-
SELECT MAX(SALARY) FROM Table_Name;
Then, to find the second highest salary, I nested the above query into another query as:-
SELECT MAX(SALARY) FROM Table_Name WHERE SALARY < (SELECT MAX(SALARY) FROM Table_Name);

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?