Mysql Assignments Evolve BPM
Mysql Assignments Evolve BPM
Write a query to display the companies’ details whose revenue is less than 1L or
more than 1cr.
==> SELECT *FROM your_table_name WHERE revenue < 100000 OR revenue > 10000000;
Write a query to show the industry and the total companies with more than five
companies under each industry.
Write a query to show the top 11th to 20th positions in the taxpayer list.
==> SELECT * FROM your_table_name ORDER BY tax_percentage DESC LIMIT 10 OFFSET 10;
Write a query to show all companies' names and their parent companies' names.