Loading

Sunday, April 17, 2005

Do a join on the same table in MySQL

You can join the same table in mysql!

mysql> select mv2.name, mv1.quantity
-> from dw.MAILVRS mv1, dw.MAILVRS mv2
-> where mv1.version_recnum = 124475 and mv1.package_recnum = mv2.dataflex_recnum_one;

+---------+----------+
| name | quantity |
+---------+----------+
| Kit A | 25000 |
| Control | 50000 |
| Kit E | 25000 |
+---------+----------+

SHARE TWEET

Thank you for reading this article Do a join on the same table in MySQL With URL http://x-tutorials.blogspot.com/2005/04/do-join-on-same-table-in-mysql.html. Also a time to read the other articles.

0 comments:

Write your comment for this article Do a join on the same table in MySQL above!