Files
dojo/public/home/admin/mensajes/json/qGetInfo.q

12 lines
247 B
Plaintext
Raw Normal View History

2018-07-18 04:28:26 -05:00
select
e.id as imid,
concat(day(e.fecha)," de ",m.nombre," ", year(e.fecha)) as imdate,
e.nombre as imname,
e.correo as imail,
e.texto as immsg
from entrada as e
inner join vuelo.mes as m on m.id=month(e.fecha)
2018-07-18 16:04:47 -05:00
where e.id= ? ; #imid
2018-07-18 04:28:26 -05:00