SELECT vuid
FROM tbl_poms
MINUS
SELECT bookingrefno
FROM etrans3103.ri_p rq_job_union_vi ew_bd1
MINUS
SELECT vuid
FROM tbl_dsrpoms;
this query executing correct answer ok ,i am selecting vuid
column only from tbl_poms but
i need whole column from the tbl_poms table
if i am select * from tbl_poms display error
have any another way please give the solution
FROM tbl_poms
MINUS
SELECT bookingrefno
FROM etrans3103.ri_p rq_job_union_vi ew_bd1
MINUS
SELECT vuid
FROM tbl_dsrpoms;
this query executing correct answer ok ,i am selecting vuid
column only from tbl_poms but
i need whole column from the tbl_poms table
if i am select * from tbl_poms display error
have any another way please give the solution
Comment