vote up 1 vote down star

I have the following (returning two separate result sets) being successfully executed from a proc but cannot do the same when executing this as a basic query.

SELECT * FROM persons;
SELECT * FROM addresses;

Possible? What's the syntax?

EDIT:

I am using Ruby's DBI library:

dbh.query("SELECT * FROM persons; SELECT * FROM addresses;")
flag

75% accept rate

3 Answers

vote up 3 vote down

JOIN persons and addresses, and you can get a big result table, assuming addresses correlates to persons with some identifier. If the two queries aren't related, why would you want them together?

link|flag
Hypothetical example. In certain instances based on how the records will be handled it makes sense to return each recordset independently. – Mario Oct 15 at 17:17
vote up 2 vote down

are you talking about from the mysql cli? works fine for me:

mysql> select count(*) from a; select count(*) from a;
+----------+
| count(*) |
+----------+
|     2050 |
+----------+
1 row in set (0.06 sec)

+----------+
| count(*) |
+----------+
|     2050 |
+----------+
1 row in set (0.00 sec)

if you're talking about a specific language, then it depends on your mysql library. for example, the PHP mysql library does not support this. however, the mysqli library does if you use multi_query().

link|flag
+1 Wow, learn something new every day. – Tom Leys Oct 14 at 21:07
I was thinking of the Ruby DBI library, but I noticed I also couldn't run the above inside the "MySQL Administrator". – Mario Oct 15 at 17:19
everything i'm reading about ruby DBI points to no. mysql administrator doesn't let you execute two queries and get two result sets, but it does support multiple result sets, for example when a stored procedure has multiple result sets. – longneck Oct 15 at 18:12
vote up 1 vote down

If the data correlates use a JOIN to join address items onto person items. If your tables both contain similar columns you probably want a UNION SELECT like so:

SELECT * FROM people UNION SELECT * FROM addresses;

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.