gpt4 book ai didi

php - 如何只显示指定列中不包含 NULL 值的结果?

转载 作者:行者123 更新时间:2023-11-29 20:34:38 25 4
gpt4 key购买 nike

我正在使用DataTables jQuery plugin以图表格式显示 mySQL 数据库的结果。我的服务器端配置如下:

// DB table to use
$table = 'Estimates';

// Table's primary key
$primaryKey = 'CreatedDate';

// Array of database columns which should be read and sent back to DataTables.
// The `db` parameter represents the column name in the database, while the `dt`
// parameter represents the DataTables column identifier. In this case simple
// indexes
$columns = array(
array( 'db' => 'Client', 'dt' => 0 ),
array( 'db' => 'EstimateNumber', 'dt' => 1 ),
array( 'db' => 'Status', 'dt' => 2 ),
array( 'db' => 'CurrentEstimateTotal', 'dt' => 3 ),
array( 'db' => 'CreatedDate', 'dt' => 4 )
);

// SQL server connection information
$sql_details = array(
'user' => 'root',
'pass' => 'root',
'db' => 'tm-charts',
'host' => 'localhost'
);


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* If you just want to use the basic configuration for DataTables with PHP
* server-side, there is no need to edit below this line.
*/

require( 'ssp.class.php' );

echo json_encode(
SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns )
);

此处理主要使用 DataTables 提供的简单服务器端处理模板,which you can view here.

我的问题是:如何编辑此模板以仅显示 CreatedDate 列中没有 NULL 值的结果?

感谢您的帮助!

最佳答案

莉兹·巴纳赫:您需要包含 WHERE 条件,如下所示:

require( 'ssp.class.php' );
$where = "CreatedDate IS NOT NULL";
echo json_encode(
SSP::simple( $_GET, $sql_details, $table, $primaryKey, $columns,$where )
);

希望这有帮助:)

关于php - 如何只显示指定列中不包含 NULL 值的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38861504/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com