PRAGMA full_column_names;
PRAGMA full_column_names = 0 | 1;
Query or change the full-column-names flag. This flag affects the way SQLite names columns of data returned by SELECT statements when the expression for the column is a table-column name or the wildcard "*". Normally, such result columns are named <table-name/alias><column-name> if the SELECT statement joins two or more tables together, or simply <column-name> if the SELECT statement queries a single table. When the full-column-names flag is set, such columns are always named <table-name/alias> <column-name> regardless of whether or not a join is performed.
If both the short-column-names and full-column-names are set, then the behaviour associated with the full-column-names flag is exhibited.