Re: Select Statement with AS Keyword

2001-07-20 Thread Werner Stuerenburg
select table1.colOne as one, table2.colOne as two from table1, table2 where some condition... Later fetch the values with names one and two. Sie schrieben am Freitag, 20. Juli 2001, 23:55:45: > I have two tables and both tables have a field name thats the same. I > need to display > both those

Select Statement with AS Keyword

2001-07-20 Thread Kory Wheatley
I have two tables and both tables have a field name thats the same. I need to display both those field names back to the browser using PHP. I have used php to display all the other fields but I can't display these fields, because of the identical name. I know you can us the Select statement with