blob: 42d4fdf4927c508b3fda2dea3bc0ce63b805c9a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
USE plato;
pragma DisableSimpleColumns;
select
cust.customer_id, cntr.country_name
from
plato.countries1 as cntr
join
plato.customers1 as cust
on cntr.country_id = cust.country_id
where cntr.country_id = "11";
|