mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-14 23:40:58 +00:00
5 lines
192 B
Plaintext
5 lines
192 B
Plaintext
SELECT 1 INTO @foo;
|
|
SELECT * FROM sakila.actor INTO OUTFILE '/tmp/test_select_into_1.log';
|
|
SELECT actor_id,first_name FROM sakila.actor LIMIT 1 INTO DUMPFILE '/tmp/test_select_into_2.log';
|
|
|