From the following tables, write a SQL query to find the final four teams in the tournament. Return country name
- برمجة سي كيو ال sql
- 2021-09-04
- mhanasmh00489829403
الأجوبة
SELECT country_name
FROM match_details a
JOIN soccer_country b
ON a.team_id=b.country_id
WHERE play_stage='S';
Sample Output:
country_name -------------- France Germany Portugal Wales (4 rows)
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال