Small hint for making query in Mariadb -
how can make query practice.i have 2 tables, 1 football clubs , other players. football clubs have next atributes: (id, name,stadium,president, founding year) , players(id,club_id,name,surname,date of birth,position) want make query show me clubs , players founded after 1902 example.
select c.name, p.surname, p.name, p.position clubs c join players p on p.club_id = c.id c.founding_year = 1902;
Comments
Post a Comment