Re: Selecting * from multiple tables

2001-08-27 Thread Ian Barwick
On Monday 27 August 2001 19:43, Dave Mittner wrote: > I'm running into a snag... here's an example of the query I'm making > from within Perl: > > SELECT * FROM table1,table2 > > I know it's not a nice way to do it, but I'm making an SQL webpage > frontend which I'd like to support it just in case

Re: Selecting * from multiple tables

2001-08-27 Thread Paul DuBois
At 10:43 AM -0700 8/27/01, Dave Mittner wrote: >I'm running into a snag... here's an example of the query I'm making >from within Perl: > >SELECT * FROM table1,table2 > >I know it's not a nice way to do it, but I'm making an SQL webpage >frontend which I'd like to support it just in case. I'm >usi

Selecting * from multiple tables

2001-08-27 Thread Dave Mittner
I'm running into a snag... here's an example of the query I'm making from within Perl: SELECT * FROM table1,table2 I know it's not a nice way to do it, but I'm making an SQL webpage frontend which I'd like to support it just in case. I'm using fetchrow->hashref to pull it out and display it. Th