SQL Refresher #1
What is a relational database management system?
A RDBMS is a collection of programs that allow you to perform operations not limited to CRUD in your database. An RDBMS is a relational db, which means all the data is organized into a table-like structure with rows and columns.
2. What is a table? What is a field? What is a record or row? What is a column?
A table is a database object. Data is stored in tables. A field is a data entity. A record is an individual entry in a table. A column is a vertical entity that includes all the data of a field inside a table.
For example, if I have a customer table that is populated with data for age, salary, name, address, ssn numbers, id, dob, etc.
A record would be an individual row of data.
The fields are age, salary, name... etc.
A column contains all the data of a specific field, such as all the names or all the ages in the customer table.








