Editor Raw Sql Use
Editor Raw Sql Use
omurlts
Posts: 35Questions: 6Answers: 0
How im use raw sql code in editor
select mca.id,mca.data_id,mca.p_id,mca.durum,mccc.durum,mccc.iptal_neden,mccc.erteleme_tarih from mod_cagri_aramalistesi mca
left join (select arama_id,max(id) as last_id from mod_cagri_cagrilistesi GROUP BY arama_id) mcc on mca.id = mcc.arama_id
left join mod_cagri_cagrilistesi mccc on mcc.last_id = mccc.id
I'm having problems with translation editor.
This discussion has been closed.
Replies
Hi,
Currently I'm afraid you can't do that. What you would need to do is create a VIEW and read the data from that.
Allan
what VIEW any example have?
Assuming you are using MySQL, the documentation for a VIEW is in the MySQL docs. It basically lets you create what appears to be a table externally, but can contain complex SQL statements.
Allan
im fix this. maybe need other person