High Availability

Finding Employees Who Have Been with the Company for More Than 5 Years
AskAI

This technical problem deals with finding employees who have been with a company for more than 5 years. Given a table of data with employee start and end dates, the goal is to write a query that returns all employees who satisfy the 5-year criterion. An example input and output is provided.

122
Nov 27
Find the id of the row with the maximum value
AskAI

Given a table with two columns, id and value, write a query to find the id of the row with the maximum value.

177
Nov 26
Find the Second Highest Salary in a SQL Database
AskAI

Write a SQL query to find the second highest salary from the employees table.

187
Nov 24
Find the average salary of all employees in a company using SQL.
AskAI

The average salary of all employees in a company can be found using a SQL query. For example, if the employees table contains the following columns: ID, NAME, and SALARY, the average salary can be calculated by querying the table for the average value of the SALARY column.

189
Nov 24
Find customer with highest balance
AskAI

To find the customer with the highest balance, you can use a simple SQL query as follows: SELECT customer_id, name, balance FROM customers ORDER BY balance DESC LIMIT 1

184
Nov 22
SQL Query to Find Users with Multiple Orders
AskAI

This technical problem involves writing a SQL query to find users with multiple orders. The example input and output are provided.

173
Nov 21
Find customers with at least one order in each table
AskAI

Given two tables, this SQL query finds all customers who have at least one order in each table.

177
Nov 21
SQL query to return names of people with score > 80
AskAI

This question asks for a SQL query that returns the names of all the people with a score greater than 80.

132
Nov 15