Few Mysql queries that will help you develop websites and resolve complex codes.
SELECT MAX(`salary`) from tbl where `salary` < (select MAX(`salary`) from tbl);
SELECT * FROM tbl ORDER BY FIELD(first_name,'John') desc, FIELD(last_name,’Doe′) ASC;
SELECT T2.category_name AS subcategory, T1.category_name AS category FROM category T1 JOIN category T2 ON T1.category_id = T2.category_pid
SELECT T2.category_name AS subcategory, T1.category_name AS category FROM category T1 RIGHT JOIN category T2 ON T1.category_id = T2.category_pid
SELECT T2.category_name AS subcategory, IFNULL(T1.category_name, “replacewith”) AS category FROM category T1 RIGHT JOIN category T2 ON T1.category_id=T2.category_pid IFNULL(T1.category_name, “replacewith”)
SELECT * FROM ( SELECT 0 AS parent_id,” AS parent,cat_id AS category_id,category AS category FROM categories WHERE parent_cat_id=0 UNION SELECT cat.cat_id AS parent_id,cat.category AS parent,chd.cat_id AS category_id,chd.category AS category FROM categories chd INNER JOIN categories cat ON cat.cat_id=chd.parent_cat_id ) AS t ORDER BY concat(t.parent,t.category)
The AWS Marketplace is an online store where people can buy and sell applications, services,…
Tongits is not just a card game—it’s a feeling every Filipino knows. It reminds us…
Your brand more than developing an attractive and creative logo and infectious motto. It's the…
The ads shown on videos, articles, or websites are called Display ads. You can supply…
Home security is not just about stopping burglars. It is about protecting your family, your…
Customer Loyalty is one of the most important things for brands today. Everyday companies come…