我在脚本上运行此查询。 我想从最后50行 file_title 中获取总共字符数 列。
查询运行,但是SUM所有行,我只需要而不是最后50行。
Table files:
file_id, file_title, file_user
- - - - - - - - - - - - - - - - - - -
$characters_qty = mysql_query("
SELECT *
FROM (
SELECT *,
SUM (CHAR_LENGTH(file_title)) AS foo
FROM files
ORDER BY file_id DESC
LIMIT 50
)
ORDER BY file_id
");
$res_characters = mysql_fetch_assoc($characters_qty );
$total_qty = $res_characters['foo'];
有什么建议吗?