Top SQL Queries to practice for Interviews
During interviews , instead of directly asking questions on theoretical concepts, now a days interviewers ask SQL queries that test both the theoretical as well as practical understanding and usage of the different SQL concepts. In this post, we discuss some of the most common SQL queries for the interviews that you should prepare. So, let’s begin. Q1. Write a query to update a field’s values by removing any leading and trailing spaces. Ans. UPDATE command with LTRIM() and RTRIM() functions. UPDATE Table1 SET Name = LTRIM(RTRIM(Name)); Q2. Write an SQL query to return the count of occurrence of a character in a particular field. Ans. For this query, we will use the Length() function with the subtraction operator and aReplace function. SELECT Name, LENGTH(Name) - LENGTH(REPLACE(Name, 'k', '')) FROM Employee; Q3. How can we create a new table with data and structure the same as an existing table? Ans. Creating a new table just requires us to use the CREATE TA...