Topic: How do i link two table sin a dbase using mysql
How do i link two table sin a dbase using mysql?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → How do i link two table sin a dbase using mysql
How do i link two table sin a dbase using mysql?
I'm not sure of what you mean but perhaps you're looking for this.
yes join, but join can be a complex subject in the sql world... here's the easiest way to do a join with 2 tables:
SELECT U.ID, U.USERNAME, Q.FAVQUOTE FROM USERS U INNER JOIN QUOTES Q ON U.ID = Q.ID WHERE Q.FAVQUOTE != NULL;
now MIND you, thats only an EXAMPLE.. but the basis is there.
PunBB Forums → PunBB 1.2 troubleshooting → How do i link two table sin a dbase using mysql
Powered by PunBB, supported by Informer Technologies, Inc.