Hi, I would like to create a query that returns rows in the following format:
string name, int period, double value, string category
where there are two sets of data which I want to have the same name and period, the value is arbitrary, and the category should be 1 or 2. The category data does not exist and needs to be 'created' within the query.
The two sets of data will come from separate tables, A and B which return:
name, period, value
So I want to put a string '1' in the category column if it is from A, '2' if it is from B and return the normal data in the other columns.
How could I do this?