LIMIT
总是来到所有关键词之后.
更正了SQL:
SELECT title FROM userpost WHERE users_user_id=9 LIMIT 5 OFFSET 10
通常,SELECT查询具有以下顺序:
SELECT Fields List FROM WHERE GROUP BY (if needed) ORDER BY (if needed) LIMIT (This always come at end and if limit is not specified, query will return all records from result set.)