It's a MySQL database, so yes.
How you go about doing so is another matter.
Run the command:
mysql -u USERNAME -p DBNAME
SELECT quote,contributor FROM quotes;
That will dump a list that you can copy and paste.
Or to break it up...
SELECT quote,contributor FROM quotes LIMIT 0,25;
SELECT quote,contributor FROM quotes LIMIT 26,50;