Query
string
Label
int64
SELECT wp_posts.* FROM wp_posts WHERE ID IN ( 367532 )
0
SELECT option_value FROM wp_options WHERE option_name = 'options_number_of_support_family' LIMIT 1
0
SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ( 'support_cat' ) AND t.slug IN ( 'support-family' )
0
SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ( 'support_cat' ) AND t.term_id IN ( 2637 )
0
SELECT wp_posts.* FROM wp_posts LEFT JOIN wp_term_relationships ON ( wp_posts.ID = wp_term_relationships.object_id ) WHERE 1 = 1 AND ( wp_term_relationships.term_taxonomy_id IN ( 2637 ) ) AND wp_posts.post_type = 'support_family' AND ( ( wp_posts.post_status = 'publish' ) ) GROUP BY wp_posts.ID OR...
0
SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ( 'support_cat' ) AND tr.object_id IN ( 347681, 262330, 292419, 262334 ) ORDER BY t.name ASC
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 347681,262330,292419,262334 ) ORDER BY meta_id ASC
0
SELECT wp_posts.ID FROM wp_posts WHERE 1 = 1 AND wp_posts.post_type = 'acf-field' AND ( ( wp_posts.post_status = 'publish' ) ) AND wp_posts.post_name = 'field_5fbce94a85edc' ORDER BY wp_posts.menu_order ASC, wp_posts.post_title ASC LIMIT 0, 1
0
SELECT wp_posts.* FROM wp_posts WHERE ID IN ( 367589 )
0
SELECT * FROM wp_posts WHERE ID = 347682 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 347682 ) ORDER BY meta_id ASC
0
SELECT * FROM wp_posts WHERE ID = 262331 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 262331 ) ORDER BY meta_id ASC
0
SELECT * FROM wp_posts WHERE ID = 292420 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 292420 ) ORDER BY meta_id ASC
0
SELECT * FROM wp_posts WHERE ID = 262335 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 262335 ) ORDER BY meta_id ASC
0
SELECT option_value FROM wp_options WHERE option_name = '_options_number_of_preferred_partners' LIMIT 1
0
SELECT wp_posts.ID FROM wp_posts WHERE 1 = 1 AND wp_posts.post_type = 'acf-field' AND ( ( wp_posts.post_status = 'publish' ) ) AND wp_posts.post_name = 'field_5fc54784b64dd' ORDER BY wp_posts.menu_order ASC, wp_posts.post_title ASC LIMIT 0, 1
0
SELECT wp_posts.* FROM wp_posts WHERE ID IN ( 367533 )
0
SELECT option_value FROM wp_options WHERE option_name = 'options_number_of_preferred_partners' LIMIT 1
0
SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ( 'support_cat' ) AND t.slug IN ( 'preferred-partners' )
0
SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ( 'support_cat' ) AND t.term_id IN ( 2636 )
0
SELECT wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON ( wp_posts.ID = wp_term_relationships.object_id ) WHERE 1 = 1 AND ( wp_term_relationships.term_taxonomy_id IN ( 2636 ) ) AND wp_posts.post_type = 'support_family' AND ( ( wp_posts.post_status = 'publish' ) ) GROUP BY wp_posts.ID O...
0
SELECT wp_posts.* FROM wp_posts WHERE ID IN ( 262310,262326,262328 )
0
SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ( 'support_cat' ) AND tr.object_id IN ( 262310, 262326, 262328 ) ORDER BY t.name ASC
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 262310,262326,262328 ) ORDER BY meta_id ASC
0
SELECT * FROM wp_posts WHERE ID = 262311 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 262311 ) ORDER BY meta_id ASC
0
SELECT * FROM wp_posts WHERE ID = 262327 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 262327 ) ORDER BY meta_id ASC
0
SELECT * FROM wp_posts WHERE ID = 262329 LIMIT 1
0
SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN ( 262329 ) ORDER BY meta_id ASC
0
SELECT * FROM Customers;
0
SELECT column1 , column2, ... FROM table_name ;
0
SELECT * FROM table_name ;
0
SELECT CustomerName, City FROM Customers;
0
SELECT DISTINCT column1 , column2, ... FROM table_name ;
0
SELECT Country FROM Customers;
0
SELECT DISTINCT Country FROM Customers;
0
SELECT COUNT ( DISTINCT Country ) FROM Customers;
0
SELECT Count ( * ) AS DistinctCountries
0
FROM ( SELECT DISTINCT Country FROM Customers ) ;
0
SELECT column1 , column2, ... FROM table_name WHERE condition ;
0
SELECT * FROM Customers WHERE Country = 'Mexico';
0
SELECT * FROM Customers WHERE CustomerID = 1;
0
SELECT column1 , column2, ... FROM table_name WHERE condition1 AND condition2 AND condition3 ... ;
0
SELECT column1 , column2, ... FROM table_name WHERE condition1 OR condition2 OR condition3 ... ;
0
SELECT column1 , column2, ... FROM table_name WHERE NOT condition ;
0
SELECT * FROM Customers WHERE Country = 'Germany' AND City = 'Berlin';
0
SELECT * FROM Customers WHERE City = 'Berlin' OR City = 'München';
0
SELECT * FROM Customers WHERE Country = 'Germany' OR Country = 'Spain';
0
SELECT * FROM Customers WHERE NOT Country = 'Germany';
0
SELECT * FROM Customers WHERE Country = 'Germany' AND ( City = 'Berlin' OR City = 'München' ) ;
0
SELECT * FROM Customers WHERE NOT Country = 'Germany' AND NOT Country = 'USA';
0
SELECT column1 , column2, ... FROM table_name ORDER BY column1, column2, ... ASC|DESC;
0
SELECT * FROM Customers ORDER BY Country;
0
SELECT * FROM Customers ORDER BY Country DESC;
0
SELECT * FROM Customers ORDER BY Country, CustomerName;
0
SELECT * FROM Customers ORDER BY Country ASC, CustomerName DESC;
0
SELECT column_names FROM table_name WHERE column_name IS NULL;
0
SELECT column_names FROM table_name WHERE column_name IS NOT NULL;
0
SELECT CustomerName, ContactName, Address FROM Customers WHERE Address IS NULL;
0
SELECT CustomerName, ContactName, Address FROM Customers WHERE Address IS NOT NULL;
0
SELECT TOP number | percent column_name FROM table_name WHERE condition ;
0
SELECT column_name FROM table_name WHERE condition LIMIT number ;
0
SELECT column_name FROM table_name ORDER BY column_name FETCH FIRST number ROWS ONLY;
0
SELECT column_name FROM table_name WHERE ROWNUM < = number ;
0
SELECT *
0
FROM ( SELECT column_name FROM table_name ORDER BY column_name ) WHERE ROWNUM < = number ;
0
SELECT TOP 3 * FROM Customers;
0
SELECT * FROM Customers LIMIT 3;
0
SELECT * FROM Customers FETCH FIRST 3 ROWS ONLY;
0
SELECT TOP 50 PERCENT * FROM Customers;
0
SELECT * FROM Customers FETCH FIRST 50 PERCENT ROWS ONLY;
0
SELECT TOP 3 * FROM Customers WHERE Country = 'Germany';
0
SELECT * FROM Customers WHERE Country = 'Germany' LIMIT 3;
0
SELECT * FROM Customers WHERE Country = 'Germany' FETCH FIRST 3 ROWS ONLY;
0
SELECT MIN ( column_name ) FROM table_name WHERE condition ;
0
SELECT MAX ( column_name ) FROM table_name WHERE condition ;
0
SELECT MIN ( Price ) AS SmallestPrice FROM Products;
0
SELECT MAX ( Price ) AS LargestPrice FROM Products;
0
SELECT COUNT ( column_name ) FROM table_name WHERE condition ;
0
SELECT AVG ( column_name ) FROM table_name WHERE condition ;
0
SELECT SUM ( column_name ) FROM table_name WHERE condition ;
0
SELECT COUNT ( ProductID ) FROM Products;
0
SELECT AVG ( Price ) FROM Products;
0
SELECT SUM ( Quantity ) FROM OrderDetails;
0
SELECT column1, column2, ... FROM table_name WHERE columnN LIKE pattern ;
0
SELECT * FROM Customers WHERE CustomerName LIKE 'a%';
0
SELECT * FROM Customers WHERE CustomerName LIKE '%a';
0
SELECT * FROM Customers WHERE CustomerName LIKE '%or%';
0
SELECT * FROM Customers WHERE CustomerName LIKE '_r%';
0
SELECT * FROM Customers WHERE CustomerName LIKE 'a__%';
0
SELECT * FROM Customers WHERE ContactName LIKE 'a%o';
0
SELECT * FROM Customers WHERE CustomerName NOT LIKE 'a%';
0
SELECT * FROM Customers WHERE City LIKE 'ber%';
0
SELECT * FROM Customers WHERE City LIKE '%es%';
0
SELECT * FROM Customers WHERE City LIKE '_ondon';
0
SELECT * FROM Customers WHERE City LIKE 'L_n_on';
0