For example, there is a MySQL request in the get.php file:
SELECT `id`, `uid` FROM `tasks` WHERE `uid` = 2 AND `read` = 0; and there is a request in the test.php file:
SELECT `id`, `uid` FROM `tasks` WHERE `uid` = 2; What index to put in this case? Compound on uid and read? Or separately on uid and read?