0

从 ajax 源上的两个表中获取数据的最佳方法是什么?

我正在使用数据表,例如:

$('#user_types').dataTable({
            'bServerSide' : true,
            'bProcessing' : true,
            'sAjaxSource' : 'datatables/ajax_file.php',
            'iDisplayLength' : 50,  
            "sPaginationType": "bootstrap",
            "oLanguage":{
                    "sSearch": "",
                    "sLengthMenu": "Limit: _MENU_"
                },
            'aaSorting': [[3, 'desc']],
            'aoColumns' : [
                null,
                null,
                null,
                null,
                null,
                null,
                null,
                {'bSortable' : false},
            ]
        })

现在,在 ajax_file.php 上,我正在从一张表中读取所有信息。现在我需要从另一个表中获取一列,我该怎么做?

4

1 回答 1

1

datatables/ajax_file.php将您中的查询从“普通”选择查询更改为使用JOINor的查询,UNION将要显示的表连接在一起。

于 2012-10-05T18:55:58.737 回答