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)
Are you an owner of a small business who’s trying to come up with ways…
Introduction When patients bring me their lab reports, the confusion is almost always the same.…
Are you excited about remodeling your house after a long time? Perhaps if you're planning…
The practice of yoga teaches us to be present, patient and mindful of our decisions.…
As we are once again allowed to go outside, nearly everyone is planning to go…
How do you find a cleaning company that will take excellent care of your business…