Hi,
I'm not very familiar with PS Query yet. I was wondering if it's possible to select constants/null values from a table? The reason i'm asking is because my query needs to look something like this:
SELECT A.COL1, A.COL2, A.COL3, A.COL4
FROM TABLE A, TABLE B
WHERE...
UNION
SELECT '','','',C.COL4
FROM TABLE C
WHERE...
I was able to join the two select statements with a UNION, but it seems like in the 2nd Select, i'm limited to only fields from Table C. How can i select constants/null values?
Any suggestions are appreciated. Thanks.
I'm not very familiar with PS Query yet. I was wondering if it's possible to select constants/null values from a table? The reason i'm asking is because my query needs to look something like this:
SELECT A.COL1, A.COL2, A.COL3, A.COL4
FROM TABLE A, TABLE B
WHERE...
UNION
SELECT '','','',C.COL4
FROM TABLE C
WHERE...
I was able to join the two select statements with a UNION, but it seems like in the 2nd Select, i'm limited to only fields from Table C. How can i select constants/null values?
Any suggestions are appreciated. Thanks.