7 lines
244 B
SQL
7 lines
244 B
SQL
select id_articolo,codice, `codiciAlternativi` from articolo where `codiciAlternativi` like ',ES_%' and `codiceProduttore` in
|
|
(
|
|
SELECT
|
|
`codiceProduttore`FROM
|
|
`articolo`
|
|
GROUP BY codiceProduttore
|
|
HAVING COUNT(codiceProduttore) > 1)
|