About Me

My photo
Working as Technical Lead in CollabNET software private limited.
Showing posts with label output. Show all posts
Showing posts with label output. Show all posts

Saturday, 27 February 2010

MYSQL query output to a file

select
*
from
table
where
condition
into
outfile '/tmp/result'

Thursday, 24 September 2009

psql output to file

Below is the command to redirect psql output to a file.

psql> \o /tmp/file.txt
psql> select * from table

This should allow output to custom file.