0% found this document useful (0 votes)
34 views1 page

Expressions and Operators: Chapter 3: Selecting

This document discusses selecting columns and expressions in SQL queries. It provides tips on explicitly listing column names rather than using asterisk notation, and on always using the AS keyword to define alias names to make them clear. It also notes that identifiers rather than string literals should be used for alias names. The document then explains expressions that can be used in select lists, including unary operators, bitwise operators, arithmetic operators, string concatenation, column references, variables, and string literals.

Uploaded by

Ajverson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Expressions and Operators: Chapter 3: Selecting

This document discusses selecting columns and expressions in SQL queries. It provides tips on explicitly listing column names rather than using asterisk notation, and on always using the AS keyword to define alias names to make them clear. It also notes that identifiers rather than string literals should be used for alias names. The document then explains expressions that can be used in select lists, including unary operators, bitwise operators, arithmetic operators, string concatenation, column references, variables, and string literals.

Uploaded by

Ajverson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

102 Chapter 3: Selecting

ON sales_order.id = sales_order_items.id
ORDER BY product.name,
sales_order.order_date DESC;

Tip: In application programs it is usually a better idea to explicitly list all the
column names in the select list rather than use the asterisk "*" notation.

An individual item (i.e., something not using the asterisk "*" notation) in a
select list may be assigned an alias name. This name may be used elsewhere in
the select list and in other clauses to refer back to this select list item. In the case
of a column name in a select list, the alias name is optional because with or
without an alias name, the column name itself may be used to refer to that item.
For a select list item that is an expression, an alias name is required if that select
list item is to be referred to by name in another location.

Tip: The keyword AS may be optional but it should always be used when
defining alias names to make it clear to the reader which is the alias name and
which is the select list item.

Tip: Use identifiers as alias names, not string literals. Only the select list
allows a string literal as an alias, and if you use that facility you cant refer to the
alias from other locations. In all the other locations where alias names may be
used (in derived table definitions, CREATE VIEW statements, and WITH clauses,
for example), only identifiers may be used, and thats what you should use in the
select list.

Individual items in the select list, such as expressions and column references,
are explained in detail in the following sections.

3.10 Expressions and Operators


A select list can be more than asterisks and column names; you can use vastly
more complex expressions as long as each one returns a single value when it is
evaluated. In fact, the simple <column_reference> is almost lost in the syntax
for <expression>:
<expression> ::= <basic_expression>
| <subquery>
<basic_expression> ::= <simple_expression>
| <if_expression>
| <case_expression>
<simple_expression> ::= "(" <basic_expression> ")" -- Precedence:
| "-" <expression> -- 1. unary minus
| "+" <expression> -- 1. unary plus
| "~" <expression> -- 1. bitwise NOT
| <simple_expression> "&" <expression> -- 2. bitwise AND
| <simple_expression> "|" <expression> -- 2. bitwise OR
| <simple_expression> "^" <expression> -- 2. bitwise XOR
| <simple_expression> "*" <expression> -- 3. multiply
| <simple_expression> "/" <expression> -- 3. divide
| <simple_expression> "+" <expression> -- 4. add
| <simple_expression> "-" <expression> -- 4. subtract
| <simple_expression> "||" <expression> -- 5. concatenate
| <column_reference>
| <variable_reference>
| <string_literal>

You might also like