Let i have a query :-
Select emp_name Employee,
emp_address Address,
emp_data Info,
From Employee emp
Where emp.emp_name like upper('%jos%');
I want to have the output saved to a flat file in the below mentioned format
Employee|Address|Info
qazx|dalas|regular
ueettu|la|contract
uwuw|hawai|permanant
I am unable to find any save as format with the above mentioned one.
Please help
Regards,
Subha
Select emp_name Employee,
emp_address Address,
emp_data Info,
From Employee emp
Where emp.emp_name like upper('%jos%');
I want to have the output saved to a flat file in the below mentioned format
Employee|Address|Info
qazx|dalas|regular
ueettu|la|contract
uwuw|hawai|permanant
I am unable to find any save as format with the above mentioned one.
Please help
Regards,
Subha