LIMIT 22, 10
To retrieve all rows from a certain offset up to the end of the result set, you can use some large number for the second parameter. This statement retrieves all rows from the 96th row to the last:SELECT * FROM tbl LIMIT 95,18446744073709551615;
You can use:stackoverflow.com/questions/3887509/mysqls-now-1-day
NOW() + INTERVAL 1 DAY
If you are only interested in the date, not the date and time then you can use CURDATE instead of NOW:
CURDATE() + INTERVAL 1 DAY
2) В виде 2 столбцов (1 для ID пользователя и 1 для ID вида фрукта), и множества строк. Каждая строка будет означать наличие фрукта определённого вида.Этот вариант гибче.
Можно ли как-то достоверно узнать id именно этой вставленной записиМожно, он хранится в LAST_INSERT_ID()
The ID that was generated is maintained in the server on a per-connection basis. This means that the value returned by the function to a given client is the first AUTO_INCREMENT value generated for most recent statement affecting an AUTO_INCREMENT column by that client. This value cannot be affected by other clients, even if they generate AUTO_INCREMENT values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions.Гласит документация.
... LAST_INSERT_ID() returns a ... value representing the first automatically generated value successfully inserted for an AUTO_INCREMENT column as a result of the most recently executed INSERT statement. The value of LAST_INSERT_ID() remains unchanged if no rows are successfully inserted.
как это можно реализовать, хоть в какую сторону копатьНапишите простейший скрипт на php (раз уж вы его указали в тегах). Если не знаете как это сделать - разбейте свою задачу на небольшие шаги и ищите информацию в поисковике или задавайте конкретные вопросы здесь.
SELECT id, name
FROM table
WHERE status = 1 ORDER BY RAND() LIMIT 1