In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `pg_show` ADD INDEX `pg_show_idx_url` (`url`);
SELECT
pg_show_php,
pg_show_tab,
pg_text.text AS title,
pg_text.text AS description
FROM
(SELECT
pg_show.php AS pg_show_php,
pg_show.tab AS pg_show_tab,
pg_show.tit AS pg_show_tit,
pg_show.desc AS pg_show_desc
FROM
pg_show
WHERE
pg_show.url = 'value' LIMIT 1) AS pg_show
INNER JOIN
pg_text
ON pg_show.pg_show_tit = title
INNER JOIN
pg_text
ON pg_show.pg_show_desc = description
WHERE
1 = 1 LIMIT 1