Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SQL queries must be conform to the requirements in the checklist before they are submitted for publication. The checklist also can be used to guide for the review of a query before it is submitted as a pull request.

  • Query runs without errors
  • Query output is correct
  • Query logic is clear and well documented
  • Query is readable and properly indented with spaces (not tabs)
  • Table and column names are in all-lowercase
  • Quotation marks are used only where necessary
  • Comments include who has reviewed query


The checklist below can be used to guide your review of a pull request (PR). A copy of the checklist may be added to a comment attached to a review. Check off the items that have been confirmed in your review by adding an x between the square brackets [] on each line.

If any items remain unchecked or you have further questions, you can indicate that in the comment as well and select "Request changes" as the review response.

All queries:
- [ ] PR Title and Description are accurate and thorough
- [ ] PR is based on a new branch (not main)
- [ ] PR scope is not overly broad
- [ ] Query runs without errors
- [ ] Query output is correct
- [ ] Query logic is clear and well documented
- [ ] Query is readable and properly indented with spaces (not tabs)
- [ ] Table and column names are in all-lowercase
- [ ] Quotation marks are used only where necessary

Report queries:
- [ ] Query has complete user documentation
    - [ ] Purpose of report
    - [ ] Sample output
    - [ ] Query instructions

...