1. Coronel, C., & Morris, S. (2016). Database Systems: Design, Implementation, and Management (12th ed.). Cengage Learning. In Chapter 3, "The Relational Database Model," all example tables, such as the AGENT table in Table 3.3 (p. 89), consistently list the primary key attribute (AGENTCODE) as the first column in the table structure, demonstrating this as a standard convention.
2. Silberschatz, A., Korth, H. F., & Sudarshan, S. (2020). Database System Concepts (7th ed.). McGraw-Hill. Throughout the text, relational schemas are presented with the primary key attributes listed first. For instance, in Chapter 2, Section 2.2, "Database Schema," the example instructor relation is defined as instructor(ID, name, deptname, salary), with the primary key ID as the first attribute.
3. Stanford University. (2016). CS145 Introduction to Databases, Lecture 2: Relational Model. In the lecture notes, relational schemas are consistently defined with the primary key attribute(s) listed first. For example, the Student relation is shown as Student(sID, sName, GPA, sizeHS), where sID is the primary key. This illustrates the standard academic convention for representing table structures. (Available via Stanford's public course archives).