On 03/09/2010 9:26 p, Hank wrote:
On Fri, Sep 3, 2010 at 6:23 AM, Jangita<jang...@jangita.com>  wrote:
On 02/09/2010 8:30 p, Hank wrote:

Simple question about views:


Hank,
Have you tried "running away from the problem :-)" by doing...

CREATE PROCEDURE `combo`(theid INT)
BEGIN
        (SELECT * FROM table1 WHERE id = theid)
        UNION
        (SELECT * FROM table2 WHERE id = theid);
    END$$

then calling it using

call combo(value);


Wow - thanks. This works perfectly.   I'm assuming I can use "call
combo(value)" in PHP and it returns the result set as if it were a
proper table?

-Hank

Yes! it should work just like a table.

--
Jangita | +256 76 91 8383 | Y! & MSN: jang...@yahoo.com
Skype: jangita | GTalk: jangita.nyag...@gmail.com

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to