Ronald Wiplinger wrote: > I finished my setup for ASTCC and I am looking for a tool to convert a > mysql table to excel and back. Try this in MySQL select * into outfile '/tmp/out.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\n' from tbl_test;