SELECT COUNT(*) FROM customers;
SELECT 'customers' tablename, COUNT(*) rows FROM customers UNION SELECT 'orders' tablename, COUNT(*) rows FROM orders;
Pro tip: use ```triple backticks around text``` to write in code fences