Hello,
I am confused on how to do this.
I have 2 tables in a DB. Here is a hypothetical one.
TableOne
-uid
-name
-active
TableTwo
-uid
-code
-usertype
What I want to do:
Select * from TableOne,TableTwo where say t1.active=1, t2.code='33', t2.usertype='friend'
What is the best way to do this so I can then find only those who meet that criteria?
Thanks