Column name alias for count function : Alias « Query Select « Oracle PL/SQL Tutorial






SQL>
SQL>
SQL> create table registrations
  2  ( attendee    NUMBER(4)
  3  , course      VARCHAR2(6)
  4  , begindate   DATE
  5  , evaluation  NUMBER(1)) ;

Table created.

SQL>
SQL>
SQL> insert into registrations values (1, 'SQL',date '1999-04-12',4   );

1 row created.

SQL> insert into registrations values (2, 'SQL',date '1999-12-13',NULL);

1 row created.

SQL> insert into registrations values (3, 'SQL',date '1999-12-13',NULL);

1 row created.

SQL> insert into registrations values (4, 'OAU',date '1999-08-10',4   );

1 row created.

SQL> insert into registrations values (5, 'OAU',date '2000-09-27',5   );

1 row created.

SQL> insert into registrations values (6, 'JAV',date '1999-12-13',2   );

1 row created.

SQL> insert into registrations values (7, 'JAV',date '2000-02-01',4   );

1 row created.

SQL> insert into registrations values (8, 'JAV',date '2000-02-01',5   );

1 row created.

SQL> insert into registrations values (9, 'XML',date '2000-02-03',4   );

1 row created.

SQL> insert into registrations values (10,'XML',date '2000-02-03',5   );

1 row created.

SQL> insert into registrations values (1, 'PLS',date '2000-09-11',NULL);

1 row created.

SQL> insert into registrations values (2, 'PLS',date '2000-09-11',NULL);

1 row created.

SQL> insert into registrations values (3, 'PLS',date '2000-09-11',NULL);

1 row created.

SQL>
SQL>
SQL>
SQL> select r.course, r.begindate
  2  ,      count(r.attendee) as attendees
  3  from   registrations r
  4  group  by r.course, r.begindate;

COURSE BEGINDATE  ATTENDEES
------ --------- ----------
OAU    27-SEP-00          1
PLS    11-SEP-00          3
SQL    12-APR-99          1
JAV    13-DEC-99          1
SQL    13-DEC-99          2
JAV    01-FEB-00          2
XML    03-FEB-00          2
OAU    10-AUG-99          1

8 rows selected.

SQL>
SQL>
SQL> drop table registrations;

Table dropped.

SQL>








2.12.Alias
2.12.1.Using Column Aliases
2.12.2.Use table alias to reference column
2.12.3.Use spaces and preserve the case of your alias text
2.12.4.Use the optional AS keyword before the alias
2.12.5.An alias is required when using TO_CHAR to 'pretty up' the output
2.12.6.Column for alias
2.12.7.Sum alias
2.12.8.SUBSTR with column alias
2.12.9.Column name alias with space
2.12.10.Column name alias for count function