10 lines
228 B
Plaintext
Executable File
10 lines
228 B
Plaintext
Executable File
|
|
select
|
|
concat(month(t.fecha_inicio)," ",day(t.fecha_inicio)," ",l.nombre) as "name",
|
|
t.id as id
|
|
from curso_tienda as t
|
|
inner join curso_lugar as l on t.lugar_id=l.id
|
|
where t.estado=1
|
|
order by t.fecha_inicio desc;
|
|
|