1. Ullman
J. D.
& Widom
J. (n.d.). CS145 Introduction to Databases
Class Notes on SQL. Stanford University. Retrieved from https://infolab.stanford.edu/~ullman/fcdb/slides/slides-sql1.pdf. On page 4
the basic form of an SQL query is defined as SELECT FROM WHERE
explicitly showing the FROM clause as a required component.
2. PostgreSQL Documentation. (n.d.). 7.1. Overview. In PostgreSQL 16 Documentation. Retrieved from https://www.postgresql.org/docs/current/tutorial-select.html. The introductory example SELECT FROM weather; and subsequent explanations establish the FROM clause as fundamental for specifying the target table.
3. Stonebraker
M.
& Hellerstein
J. (2005). 8. Relational Algebra and SQL. In 6.830 Database Systems
Fall 2005. Massachusetts Institute of Technology: MIT OpenCourseWare. Retrieved from https://ocw.mit.edu/courses/6-830-database-systems-fall-2005/resources/lec8/. Slide 20 presents the canonical SELECT-FROM-WHERE statement
reinforcing the necessity of the FROM clause.