Features N++ Plugin & Windows App

Axis Formatting with one Click

What does it mean?

„Axis formatting“ in the context of SQL statements refers to organizing the code to enhance readability by aligning related elements (often on a vertical axis). This is achieved by arranging SQL keywords, operators, or expressions into columns or consistent positions in the code. This formatting style makes it easier for developers to scan, understand, and debug the query structure at a glance.

  • Align Columns and Expressions: For readability, columns in a SELECT clause and conditions in a WHERE clause can be indented consistently without unnecessary spacing.
  • Align SQL keywords consistently along a primary axis. be indented consistently without unnecessary spacing.

Example without Axis Formatting

Example with Axis Formatting

axisFormat 1