SQL Formatter — illustrative example INPUT select id,name from customers where active=true order by name; RESULT SELECT id, name FROM customers WHERE active = true ORDER BY name; REVIEW Formatting should preserve tokens and meaning. Use the correct dialect and avoid rewriting literals, comments or identifiers while adjusting layout. This is a teaching example, not a live execution record.