TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Adalat Khan
652
1.5k
865k
Store different query results into different Sheets of the same excel
Nov 26 2020 6:43 AM
Hi,
I have three queries that generates three different excel files on the disk and store the queries results in three different excell files. Following is my Queries:
SELECT * FROM Table1
INTO OUTFILE 'C:\\SFTP_ROOT\\MicrowaveLan.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
SELECT * FROM Table2
INTO OUTFILE 'C:\\SFTP_ROOT\\MicrowaveLanTX.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
SELECT * FROM Table3
INTO OUTFILE 'C:\\SFTP_ROOT\\MicrowaveLanRX.csv'
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
Actually i want to create a single excell file in the specified path and want to store the result of each query in the same excel file in different sheets for example, the result of Table1 will go to Sheet1, the result of Table2 will go to Sheet2 and the result of Table3 will go to Sheet3. Also i need to rename Sheet1 as Table1, Sheet2 as Table2, and Sheet3 as Table3.
Currently my files are in CSV format but i want to store them in a single excel file
How can i do it please help. Thanks
Reply
Answers (
3
)
Balance is not calculating correct ,if date filter is applied?
Set Value of a GENERATED column in a table with if condition in MYSQL