const query = "SELECT * FROM clients";
This rule aims at reducing CPU consumption by limiting the number of returns for a single SQL query.
Examples of non compliant code for this rule:
const query = "SELECT * FROM clients";
Examples of compliant code for this rule:
const query = "SELECT columns FROM table_name FETCH FIRST number ROWS ONLY";