I am trying to run a SELECT query to include a column that is not present in the table. How can I do it?
E.g.
My table has only the "Id" column; the "Source" column does not exist.
You can use the following SQL to include the "Source" column.
SELECT Id, 'PPI' AS Source FROM tableName;