Bernd <[email protected]> wrote: > I found that table aliases are repeated in the headers of compound > queries. Is this intentional and/or documented somewhere?
http://www.sqlite.org/c3ref/column_name.html The name of a result column is the value of the "AS" clause for that column, if there is an AS clause. If there is no AS clause then the name of the column is unspecified and may change from one release of SQLite to the next. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

