| 1 |
146.54 ms |
SELECT t0.id AS id_1, t0.path AS path_2, t0.uri AS uri_3, t0.date AS date_4, t0.hits AS hits_5, t0.unique_views AS unique_views_6, t0.mime_type AS mime_type_7, t0.language_id AS language_id_8 FROM hit_counter t0 WHERE t0.path = ? AND t0.date = ? AND t0.language_id IS NULL LIMIT 1
Parameters: [
"/image/store/show-5987-360-270.webp"
"2026-03-22"
]
SELECT t0.id AS id_1, t0.path AS path_2, t0.uri AS uri_3, t0.date AS date_4, t0.hits AS hits_5, t0.unique_views AS unique_views_6, t0.mime_type AS mime_type_7, t0.language_id AS language_id_8 FROM hit_counter t0 WHERE t0.path = '/image/store/show-5987-360-270.webp' AND t0.date = '2026-03-22' AND t0.language_id IS NULL LIMIT 1;
|
| 3 |
0.69 ms |
INSERT INTO hit_counter (path, uri, date, hits, unique_views, mime_type, language_id) VALUES (?, ?, ?, ?, ?, ?, ?)
Parameters: [
"/image/store/show-5987-360-270.webp"
"http://www.nazranatimes.com/image/store/show-5987-360-270.webp"
"2026-03-22"
1
1
"*/*"
null
]
INSERT INTO hit_counter (path, uri, date, hits, unique_views, mime_type, language_id) VALUES ('/image/store/show-5987-360-270.webp', 'http://www.nazranatimes.com/image/store/show-5987-360-270.webp', '2026-03-22', 1, 1, '*/*', NULL);
|
| 5 |
7.70 ms |
SELECT t0.id AS id_1, t0.file_name AS file_name_2, t0.file_type AS file_type_3, t0.file_data AS file_data_4, t0.is_primary AS is_primary_5, t0.old_id AS old_id_6, t0.search_tag AS search_tag_7, t0.image_size AS image_size_8, t0.caption AS caption_9, t0.gz_data AS gz_data_10, t0.news_code AS news_code_11, t0.news_id AS news_id_12 FROM image_store t0 WHERE t0.id = ? LIMIT 1
SELECT t0.id AS id_1, t0.file_name AS file_name_2, t0.file_type AS file_type_3, t0.file_data AS file_data_4, t0.is_primary AS is_primary_5, t0.old_id AS old_id_6, t0.search_tag AS search_tag_7, t0.image_size AS image_size_8, t0.caption AS caption_9, t0.gz_data AS gz_data_10, t0.news_code AS news_code_11, t0.news_id AS news_id_12 FROM image_store t0 WHERE t0.id = '5987' LIMIT 1;
|