Is there a statement that can export data to an Excel file in SQL Developer?
For other applications such as SQL Anywhere has a OUTPUT statement.
Is there a similar thing in SQL Developer?
SELECT * FROM SalesOrders;
OUTPUT USING 'Driver=Microsoft Excel Driver (*.xls);
DBQ=c:\\test\\sales.xls;
READONLY=0' INTO "newSalesData";