Posts by Marcos Tesolin • 33 points
2 posts
-
0
votes3
answers161
viewsA: How to perform a select by multiple fk?
I ended up getting a solution using Subqueries. I did something like: select * from receitas where cod_receita in (select * from ingredientes_receitas ir where cod_ingrediente = "codigo1") and…
-
3
votes3
answers161
viewsQ: How to perform a select by multiple fk?
I have a question about one (or more) select. I have the following bank created and I need to do a search for a certain recipe based on one (or more, and here’s the problem) ingredients. How can I…