7 lines
183 B
Plaintext
Executable File
7 lines
183 B
Plaintext
Executable File
select distinct
|
|
month(t.fecha_inicio) as month,
|
|
year(t.fecha_inicio) as year,
|
|
date_format(t.fecha_inicio,'%Y%m') as id
|
|
from curso_tienda as t
|
|
where estado=1 and estore = 1;
|