CSE :: Database System 2 - CS
- COUNT(field_name) tallies only those rows that contain a value; it ignores all null values.
- The format SELECT-FROM-WHERE is the fundamental framework of SQL SELECT statements.
- The SQL statement: SELECT Number1 + Number 2 AS Total FROM NUMBER_TABLE; adds two numbers from each row together and lists the results in a column named Total.
- Data manipulation language (DML) commands are used to define a database, including creating, altering, and dropping tables and establishing constraints.
- Scalar aggregate are multiple values returned from an SQL query that includes an aggregate function.