Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
(SELECT * FROM messages ORDER BY date ASC LIMIT 1)
UNION
(SELECT * FROM messages ORDER BY date DESC LIMIT 1)
set profiling=1;
select * from wp_posts order by ID ASC limit 1
;
select * from wp_posts order by ID DESC limit 1
;
(select * from wp_posts order by ID ASC limit 1)
UNION
(select * from wp_posts order by ID DESC limit 1)
;
SELECT * FROM wp_posts AS t
WHERE
t.id = (SELECT MAX(x.ID) FROM wp_posts AS x) OR t.ID = (SELECT SQL_NO_CACHE MIN(x.ID) FROM wp_posts AS x)
;
show profiles;
0.00029525 select ...
0.00014650 select ...
0.00427675 (select ...
0.00035400 select ...
$t = microtime(true);
$sql = mysql_query("
select * from wp_posts order by ID ASC limit 1
");
while($row = mysql_fetch_array($sql)){
print_r($row);
}
echo microtime(true)-$t;
0.000426054000854
0.000274181365967
0.00274300575256
0.00112295150757