1
0.43 ms
SELECT COUNT (l0_ . id ) AS sclr_0 FROM listini l0_
SELECT COUNT (l0_ . id ) AS sclr_0 FROM listini l0_ ;
Copy
2
0.48 ms
SELECT t0 . id AS id_1 , t0 . type AS type_2 , t0 . old_url AS old_url_3 , t0 . new_url AS new_url_4 FROM redirects t0 WHERE t0 . old_url = ? LIMIT 1
Parameters :
[
"/it-it/shoponline/giacca-kid-lutty-short.CN.G224377WK "
]
SELECT t0 . id AS id_1 , t0 . type AS type_2 , t0 . old_url AS old_url_3 , t0 . new_url AS new_url_4 FROM redirects t0 WHERE t0 . old_url = '/it-it/shoponline/giacca-kid-lutty-short.CN.G224377WK' LIMIT 1 ;
Copy
3
0.34 ms
SELECT t0 . id AS id_1 , t0 . type AS type_2 , t0 . old_url AS old_url_3 , t0 . new_url AS new_url_4 FROM redirects t0 WHERE t0 . old_url = ? LIMIT 1
Parameters :
[
"/it-it/shoponline/giacca-kid-lutty-short.CN.G224377WK "
]
SELECT t0 . id AS id_1 , t0 . type AS type_2 , t0 . old_url AS old_url_3 , t0 . new_url AS new_url_4 FROM redirects t0 WHERE t0 . old_url = '/it-it/shoponline/giacca-kid-lutty-short.CN.G224377WK' LIMIT 1 ;
Copy
4
0.57 ms
SELECT COUNT (l0_ . id ) AS sclr_0 FROM listini l0_
SELECT COUNT (l0_ . id ) AS sclr_0 FROM listini l0_ ;
Copy
5
0.79 ms
SELECT t0 . id AS id_1 , t0 . lang AS lang_2 , t0 . label AS label_3 FROM langs t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . lang AS lang_2 , t0 . label AS label_3 FROM langs t0 WHERE t0 . id = '1' ;
Copy
6
0.66 ms
SELECT t0 . id AS id_1 , t0 . listino AS listino_2 , t0 . currency_id AS currency_id_3 FROM listini t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . listino AS listino_2 , t0 . currency_id AS currency_id_3 FROM listini t0 WHERE t0 . id = '1' ;
Copy
7
0.96 ms
SELECT t0 . id AS id_1 , t0 . product AS product_2 , t0 . ean13 AS ean13_3 , t0 . product_name AS product_name_4 , t0 . product_url AS product_url_5 , t0 . commodity_code AS commodity_code_6 , t0 . brand AS brand_7 , t0 . collection AS collection_8 , t0 . category AS category_9 , t0 . is_online AS is_online_10 , t0 . in_home AS in_home_11 , t0 . is_to_show AS is_to_show_12 , t0 . label AS label_13 , t0 . linea_id AS linea_id_14 FROM products t0 WHERE t0 . product = ? LIMIT 1
Parameters :
[
"CN.G224377WK "
]
SELECT t0 . id AS id_1 , t0 . product AS product_2 , t0 . ean13 AS ean13_3 , t0 . product_name AS product_name_4 , t0 . product_url AS product_url_5 , t0 . commodity_code AS commodity_code_6 , t0 . brand AS brand_7 , t0 . collection AS collection_8 , t0 . category AS category_9 , t0 . is_online AS is_online_10 , t0 . in_home AS in_home_11 , t0 . is_to_show AS is_to_show_12 , t0 . label AS label_13 , t0 . linea_id AS linea_id_14 FROM products t0 WHERE t0 . product = 'CN.G224377WK' LIMIT 1 ;
Copy
8
0.57 ms
SELECT t0 . id AS id_1 , t0 . region_name AS region_name_2 , t0 . region_code AS region_code_3 , t0 . ordine AS ordine_4 , t0 . lang_id AS lang_id_5 , t0 . currency_id AS currency_id_6 , t0 . listino_id AS listino_id_7 FROM shipping_regions t0 WHERE t0 . region_code = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . region_name AS region_name_2 , t0 . region_code AS region_code_3 , t0 . ordine AS ordine_4 , t0 . lang_id AS lang_id_5 , t0 . currency_id AS currency_id_6 , t0 . listino_id AS listino_id_7 FROM shipping_regions t0 WHERE t0 . region_code = 'it' LIMIT 1 ;
Copy
9
12.94 ms
SELECT ps . * , c . color , s . size , sc . conversion , pr . price , pr . discounted_price , pr . lowest_price , pr . discount_percentage , pr . discounted_price_from , pr . discounted_price_to , pr . shipping_region_id ,
(
SELECT
CONVERT (GROUP_CONCAT (
CONCAT_WS (
'|' ,
phototype_id , phototype_name , photo_path , photo_path_reduced
)
) USING utf8mb4 )
FROM skews_photos sp
WHERE sp . product_id = ps . product_id
AND sp . color_id = ps . color_id
AND season_id IN (
SELECT MAX (season_id )
FROM skews_photos
WHERE product_id = ps . product_id
AND color_id = ps . color_id
)
ORDER BY phototype_id ASC
) AS path
FROM products_skews AS ps
INNER JOIN colors AS c ON c . id = ps . color_id
INNER JOIN sizes AS s ON s . id = ps . size_id
LEFT JOIN size_conversion AS sc ON sc . size = s . size AND linea_id = 5
LEFT JOIN product_colors_order AS pco ON pco . product_id = ps . product_id ANd pco . color_id = ps . color_id
INNER JOIN prices AS pr ON pr . skew_id = ps . id AND pr . shipping_region_id = 1
WHERE ps . product_id = 21102
AND ps . qty > 0
AND ps . is_online = 1
HAVING path ! = ''
ORDER BY pco . sequence ASC , sc . sequence ASC
SELECT ps . * , c . color , s . size , sc . conversion , pr . price , pr . discounted_price , pr . lowest_price , pr . discount_percentage , pr . discounted_price_from , pr . discounted_price_to , pr . shipping_region_id ,
(
SELECT
CONVERT (GROUP_CONCAT (
CONCAT_WS (
'|' ,
phototype_id , phototype_name , photo_path , photo_path_reduced
)
) USING utf8mb4 )
FROM skews_photos sp
WHERE sp . product_id = ps . product_id
AND sp . color_id = ps . color_id
AND season_id IN (
SELECT MAX (season_id )
FROM skews_photos
WHERE product_id = ps . product_id
AND color_id = ps . color_id
)
ORDER BY phototype_id ASC
) AS path
FROM products_skews AS ps
INNER JOIN colors AS c ON c . id = ps . color_id
INNER JOIN sizes AS s ON s . id = ps . size_id
LEFT JOIN size_conversion AS sc ON sc . size = s . size AND linea_id = 5
LEFT JOIN product_colors_order AS pco ON pco . product_id = ps . product_id ANd pco . color_id = ps . color_id
INNER JOIN prices AS pr ON pr . skew_id = ps . id AND pr . shipping_region_id = 1
WHERE ps . product_id = 21102
AND ps . qty > 0
AND ps . is_online = 1
HAVING path ! = ''
ORDER BY pco . sequence ASC , sc . sequence ASC
;
Copy
10
0.44 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694261 ;
Copy
11
0.34 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 23 ;
Copy
12
0.43 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
13
0.31 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
14
0.26 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = 225 ;
Copy
15
0.30 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
16
0.28 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694263 ;
Copy
17
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 16 ;
Copy
18
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
19
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
20
0.25 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
21
0.24 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694265 ;
Copy
22
0.32 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 17 ;
Copy
23
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
24
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
25
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
26
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694266 ;
Copy
27
0.21 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 18 ;
Copy
28
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
29
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
30
0.32 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
31
0.24 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694267 ;
Copy
32
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 19 ;
Copy
33
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
34
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
35
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
36
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694268 ;
Copy
37
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 20 ;
Copy
38
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
39
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
40
0.21 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
41
0.21 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694269 ;
Copy
42
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 21 ;
Copy
43
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
44
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
45
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
46
0.21 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694270 ;
Copy
47
0.19 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . size AS size_2 FROM sizes t0 WHERE t0 . id = 22 ;
Copy
48
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
49
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
50
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
51
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694273 ;
Copy
52
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
53
0.29 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
54
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = 5940 ;
Copy
55
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
56
0.22 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694275 ;
Copy
57
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
58
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
59
0.21 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
60
0.21 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694276 ;
Copy
61
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
62
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
63
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
64
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694277 ;
Copy
65
0.30 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
66
0.35 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
67
0.31 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
68
0.32 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694278 ;
Copy
69
0.30 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
70
0.31 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
71
0.34 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
72
0.30 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694279 ;
Copy
73
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
74
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
75
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
76
0.25 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694280 ;
Copy
77
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
78
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
79
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
80
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694301 ;
Copy
81
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
82
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
83
0.21 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = 10875 ;
Copy
84
0.25 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
85
0.22 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694303 ;
Copy
86
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
87
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
88
0.26 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
89
0.30 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694305 ;
Copy
90
0.32 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
91
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
92
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
93
0.24 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694306 ;
Copy
94
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
95
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
96
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
97
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694307 ;
Copy
98
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
99
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
100
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
101
0.26 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694308 ;
Copy
102
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
103
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
104
0.21 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
105
0.21 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694309 ;
Copy
106
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
107
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
108
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
109
0.26 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 694310 ;
Copy
110
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
111
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
112
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
113
0.25 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784861 ;
Copy
114
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
115
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
116
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . color AS color_2 FROM colors t0 WHERE t0 . id = 13589 ;
Copy
117
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
118
0.22 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784863 ;
Copy
119
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
120
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
121
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
122
0.24 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784864 ;
Copy
123
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
124
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
125
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
126
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784865 ;
Copy
127
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
128
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
129
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
130
0.22 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784866 ;
Copy
131
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
132
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
133
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
134
0.23 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784867 ;
Copy
135
0.29 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
136
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
137
0.30 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
138
0.22 ms
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = ?
SELECT t0 . id AS id_1 , t0 . sku_code AS sku_code_2 , t0 . barcode AS barcode_3 , t0 . qty AS qty_4 , t0 . is_qty_blocked AS is_qty_blocked_5 , t0 . is_future AS is_future_6 , t0 . sent_to_splio AS sent_to_splio_7 , t0 . is_online AS is_online_8 , t0 . product_id AS product_id_9 , t0 . color_id AS color_id_10 , t0 . size_id AS size_id_11 FROM products_skews t0 WHERE t0 . id = 784868 ;
Copy
139
0.29 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
140
0.22 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
141
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
142
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
143
0.21 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
144
0.21 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
145
0.20 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
146
0.28 ms
SELECT img_path
FROM products_default_image
WHERE product_id = 21102
SELECT img_path
FROM products_default_image
WHERE product_id = 21102 ;
Copy
147
0.23 ms
SELECT t0 . id AS id_1 , t0 . region_name AS region_name_2 , t0 . region_code AS region_code_3 , t0 . ordine AS ordine_4 , t0 . lang_id AS lang_id_5 , t0 . currency_id AS currency_id_6 , t0 . listino_id AS listino_id_7 FROM shipping_regions t0 WHERE t0 . region_code = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . region_name AS region_name_2 , t0 . region_code AS region_code_3 , t0 . ordine AS ordine_4 , t0 . lang_id AS lang_id_5 , t0 . currency_id AS currency_id_6 , t0 . listino_id AS listino_id_7 FROM shipping_regions t0 WHERE t0 . region_code = 'it' LIMIT 1 ;
Copy
148
7.25 ms
SELECT ps . * , c . color , s . size , sc . conversion , pr . price , pr . discounted_price , pr . lowest_price , pr . discount_percentage , pr . discounted_price_from , pr . discounted_price_to , pr . shipping_region_id ,
(
SELECT
CONVERT (GROUP_CONCAT (
CONCAT_WS (
'|' ,
phototype_id , phototype_name , photo_path , photo_path_reduced
)
) USING utf8mb4 )
FROM skews_photos sp
WHERE sp . product_id = ps . product_id
AND sp . color_id = ps . color_id
AND season_id IN (
SELECT MAX (season_id )
FROM skews_photos
WHERE product_id = ps . product_id
AND color_id = ps . color_id
)
ORDER BY phototype_id ASC
) AS path
FROM products_skews AS ps
INNER JOIN colors AS c ON c . id = ps . color_id
INNER JOIN sizes AS s ON s . id = ps . size_id
LEFT JOIN size_conversion AS sc ON sc . size = s . size AND linea_id = 5
LEFT JOIN product_colors_order AS pco ON pco . product_id = ps . product_id ANd pco . color_id = ps . color_id
INNER JOIN prices AS pr ON pr . skew_id = ps . id AND pr . shipping_region_id = 1
WHERE ps . product_id = 21102
AND ps . qty > 0
AND ps . is_online = 1
HAVING path ! = ''
ORDER BY pco . sequence ASC , sc . sequence ASC
SELECT ps . * , c . color , s . size , sc . conversion , pr . price , pr . discounted_price , pr . lowest_price , pr . discount_percentage , pr . discounted_price_from , pr . discounted_price_to , pr . shipping_region_id ,
(
SELECT
CONVERT (GROUP_CONCAT (
CONCAT_WS (
'|' ,
phototype_id , phototype_name , photo_path , photo_path_reduced
)
) USING utf8mb4 )
FROM skews_photos sp
WHERE sp . product_id = ps . product_id
AND sp . color_id = ps . color_id
AND season_id IN (
SELECT MAX (season_id )
FROM skews_photos
WHERE product_id = ps . product_id
AND color_id = ps . color_id
)
ORDER BY phototype_id ASC
) AS path
FROM products_skews AS ps
INNER JOIN colors AS c ON c . id = ps . color_id
INNER JOIN sizes AS s ON s . id = ps . size_id
LEFT JOIN size_conversion AS sc ON sc . size = s . size AND linea_id = 5
LEFT JOIN product_colors_order AS pco ON pco . product_id = ps . product_id ANd pco . color_id = ps . color_id
INNER JOIN prices AS pr ON pr . skew_id = ps . id AND pr . shipping_region_id = 1
WHERE ps . product_id = 21102
AND ps . qty > 0
AND ps . is_online = 1
HAVING path ! = ''
ORDER BY pco . sequence ASC , sc . sequence ASC
;
Copy
149
0.34 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
150
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
151
0.26 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
152
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
153
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
154
0.25 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
155
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
156
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
157
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
158
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
159
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
160
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
161
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
162
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
163
0.26 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
164
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
165
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
166
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
167
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
168
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
169
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
170
0.29 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
171
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
172
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'BKBK' LIMIT 1 ;
Copy
173
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
174
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
175
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
176
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
177
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
178
0.25 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
179
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
180
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
181
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
182
0.29 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
183
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
184
0.26 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
185
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
186
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
187
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
188
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
189
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
190
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
191
0.28 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
192
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
193
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'DKNAV' LIMIT 1 ;
Copy
194
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
195
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '2' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
196
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
197
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
198
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
199
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
200
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
201
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
202
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
203
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
204
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
205
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
206
0.35 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
207
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
208
0.30 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
209
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
210
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
211
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
212
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
213
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
214
0.22 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
215
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
216
0.23 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
217
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'WHSAN' LIMIT 1 ;
Copy
218
0.31 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
219
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '4' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
220
0.27 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
221
0.26 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
222
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '6' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
223
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
224
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
225
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '8' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
226
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
227
0.27 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
228
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '10' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
229
0.23 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
230
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
231
0.24 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '12' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
232
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
233
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
234
0.25 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '14' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
235
0.24 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy
236
0.33 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
237
0.29 ms
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = ? AND t0 . linea_id = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . size AS size_2 , t0 . conversion AS conversion_3 , t0 . sequence AS sequence_4 , t0 . linea_id AS linea_id_5 FROM size_conversion t0 WHERE t0 . size = '16' AND t0 . linea_id = 5 LIMIT 1 ;
Copy
238
0.32 ms
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = ? LIMIT 1
SELECT t0 . id AS id_1 , t0 . color AS color_2 , t0 . description AS description_3 , t0 . color_start AS color_start_4 , t0 . color_end AS color_end_5 FROM colors_description t0 WHERE t0 . color = 'MCHP' LIMIT 1 ;
Copy