Data

Find all rows in Table A that have matching values in Table B.
AskAI

Given two tables, Table A and Table B, write a SQL query to find all the rows in Table A that have matching values in Table B. Output should be Table A with only the rows that have matching values in Table B.

143
Mar 09
Maximum Average Value in Contiguous Subarray
AskAI

Given an array of n integers, find the contiguous subarray of given length k that has the maximum average value. Output the maximum average value.

SQL query to find all rows in A that have a matching row in B
AskAI

Given two tables, A and B, this SQL query will find all the rows in A that have a matching row in B.

141
Mar 09
Joining Tables to Find Fruits Eaten by John or Jane
AskAI

This technical problem involves joining two tables in order to find all of the fruits that have been eaten by either John or Jane.

138
Mar 09
Find min value in array of ints.
AskAI

To find the minimum value in an array of integers, we can simply compare each value in the array to the others and keep track of the smallest value we've seen so far.

Find all employees who work in the Sales department.
AskAI

To find all employees who work in the Sales department, we can join the Employees and Departments tables on the department_id column.

143
Mar 08
Find the intersection of two tables using SQL.
AskAI

This technical problem involves using SQL to find the intersection of two tables. In other words, the goal is to find all rows from both tables that have matching values in the specified columns.

139
Mar 08
Find all rows in TABLE_A that have corresponding rows in TABLE_B
AskAI

Given two tables, write a SQL query to find all the rows in the first table that have a corresponding row in the second table.

131
Mar 08