Voting

: four minus three?
(Example: nine)

The Note You're Voting On

devnull
20 years ago
In response to eth0's comment below about SELECT'ing from two tables where the tables have columns with the same names, you can get around this problem like this:

"SELECT table1.foo AS foo1, table2.foo AS foo2 FROM table1, table2"

In the associative array returned, the keys will be "foo1" and "foo2".

<< Back to user notes page

To Top