I think the problem is that since termout is off it does display the number of records.
This is my query
select b.office_id from bookings b, customers c, flights f
where b.cust_id = c.cust_id and b.flight_no = f.flight_no
and b.office_id < 101
order by c.cust_ID;
It returns all the office...
Hi I have one more question about this method. I would like to see how many rows the query returns. When I do this method it puts all the results into a file but it does not state how many rows retrieved.
Any thoughts?
Hi want to output a simple query to a text file.
Select * from bookings
Please note I do not want it to be displayed on the screen as the table is very large.
Any help would be appreciated
Hi want to output a simple query to a text file.
Select * from bookings
Please note I do not want it to be displayed on the screen as the table is very large.
Any help would be appreciated
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.