3 Matching Annotations
  1. Jan 2023
    1. COUNT function provides a count of the rows in a result set. It has two forms. COUNT(*) counts rows regardless of data values in the rows, while COUNT(column_name) counts only non-null values in the named colum
      • COUNT(*) - counts rows regardless of data values in the rows
      • COUNT - (column_name) counts only non-null values in the named colum
    2. the DBMS assigns a column name for the result based on its own internal rules. You can always provide your own column name by assigning an alias right after the expression that forms the column
    3. As in mathematics, an SQL function returns a single value each time it is executed

      see above?