Skip to content

Commit

Permalink
Submission Accepted on the Beecrowd !
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitrimarinho committed Jan 14, 2022
1 parent 536ba66 commit 37c43b6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Begginer/SQL Codes/2606 - Categorias.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
-- Name of the problem: Categorias
-- Link: https://www.beecrowd.com.br/judge/pt/problems/view/2606

SELECT p.id, p.name
FROM products p
JOIN categories c ON p.id_categories = c.id
WHERE c.name LIKE 'super%';

-- Submission Accepted on the Beecrowd !

0 comments on commit 37c43b6

Please sign in to comment.