11 lines
201 B
Plaintext
Executable File
11 lines
201 B
Plaintext
Executable File
select
|
|
e.id as imid,
|
|
concat(month(e.fecha)," ",day(e.fecha)," ", year(e.fecha)) as imdate,
|
|
e.nombre as imname,
|
|
e.correo as imail,
|
|
e.texto as immsg
|
|
|
|
from entrada as e
|
|
where e.id= ? ; #imid
|
|
|