Skip to content

Tag: join

Is there something wrong with this SQL query

I am new to SQL queries and trying to understand it a little better. Is this SQL query valid regarding the picture below The question I was given was: “For each book authored (or co-authored) by “…

How could I use case within join and union?

I have 2 tables: Matches Rounds Inserts My query: I would like to know what places a particular team achieved (should probably use HAVING m.matchwinner = ‘fnatic’) MatchID – Team – Place 1 – fnatic – 1st 3 – fnatic – 3rd 4 – fnatic – 3rd what places …

mysql query – clash between not in and/or

I’m trying to get all my products , from A specific categories and without some products from those categories . i did this query: The problem is that i’m still getting products with the string ‘SPLA’ or ‘SA OLP’ – because the NOT IN clash with the categories How to s…

SQL Joining of Multiple Tables

SQL newbie here, I am trying to have the table print out the sum of the wages, make, and car model for all the people that own a particular make/model combination. As of right now, the table prints …