There are 2 tables...one table contains the field descriptions and another contains the values:
SELECT CSOPTFH.FDESC
FROM CSOPTFH
WHERE (((CSOPTFH.OPTFIELD)="105"));
will give me the column HEADING
and
SELECT CSOPTFD.VDESC
FROM CSOPTFD
WHERE (((CSOPTFD.OPTFIELD)="105"));
will give me the values
Can I combine both so that the 1st select can be the column HEADING for the 2nd selct statement ?
SELECT CSOPTFH.FDESC
FROM CSOPTFH
WHERE (((CSOPTFH.OPTFIELD)="105"));
will give me the column HEADING
and
SELECT CSOPTFD.VDESC
FROM CSOPTFD
WHERE (((CSOPTFD.OPTFIELD)="105"));
will give me the values
Can I combine both so that the 1st select can be the column HEADING for the 2nd selct statement ?