Databases

Find matching rows in two tables
AskAI

This technical problem deals with finding matching rows in two tables. Given table A and table B, the goal is to find all the rows in A that have a matching row in B. An example is provided, along with the expected output.

135
Feb 13
Finding common records between two tables
AskAI

This technical problem involves finding common records between two tables using SQL. An example is provided, along with the expected output.

140
Feb 13
Intersecting Two Tables in SQL
AskAI

The problem is to find the intersection of two tables, A and B, using SQL. The output should be the id and value columns from table A that are also present in table B.

136
Feb 12
Joining Tables
AskAI

Write a SQL query to find the number of common rows between two tables, Table1 and Table2.

143
Feb 12
Get names of products in 'Electronics' category
AskAI

Write a SQL query to return the names of all products in the 'Electronics' category, given two tables - products and categories.

159
Feb 11
Rows from Table A not present in Table B
AskAI

This problem asks the reader to write a SQL query to find all the rows from Table A that are not present in Table B.

143
Feb 11
Find all rows in table A that have a corresponding row in table B.
AskAI

Write a SQL query to find all the rows from table A that have a corresponding row in table B.

138
Feb 11
Find names of customers who have purchased products with a price greater than...
AskAI

Write a SQL query to find the names of customers who have purchased products with a price greater than $10.

132
Feb 11