如何在一个表中获取多语言数据(codeigniter,Mysql,Php)

时间:2013-02-23 17:58:22

标签: php mysql codeigniter

你好吗?

我的网站有多种语言(英语,法语,阿拉伯语等等),我在后端表中显示内容(帖子)..

我想在此表格中显示(标题,内容,支持语言)

查看数据库结构

http://saudi-hotels.info/tables.jpg

enter image description here

我想显示此表格的数据

http://saudi-hotels.info/table_information.jpg

enter image description here

我试图获得一个好的查询,但我无法查看我的查询:

$this->db->from('localization_posts PL');
        $this->db->join('posts PO' , 'PO.id_post = PL.id_post');
        $this->db->join('langauges LN', 'LN.id_language = PL.id_langauge');
        $result = $this->db->get()->result_array();

1 个答案:

答案 0 :(得分:1)

如果我没错,你想要给出一些查询。

试试这个。

SELECT lp.title_post, lp.content_post, p.views_post, 
       GROUP_CONCAT(l.id_language) AS l.support_language 
FROM localization_posts lp
INNER JOIN posts p ON lp.id_post = p.id_post
LEFT JOIN languages l ON lp.id_language = l.id_language;

希望会有所帮助。