Added info in doc. Minor test tweak

This commit is contained in:
Frank Cizmich
2015-04-06 18:48:06 -03:00
parent 162350a804
commit 3fd9083f34
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
SELECT 1 INTO @foo;
SELECT * FROM sakila.actor INTO OUTFILE '/tmp/test_select_into_1.log';
SELECT actor_id,first_name FROM sakila.actor INTO DUMPFILE '/tmp/test_select_into_2.log';
SELECT actor_id,first_name FROM sakila.actor LIMIT 1 INTO DUMPFILE '/tmp/test_select_into_2.log';