I have 2 tables like these
TABLE 1
**user_id** **text**
1 test
1 test
2 test
2 test
3 test
TABLE 2
**user_id** **status**
1 1
2 0
3 0
how can i select users whose status is 1 from TABLE 1 ?
Thanks
1 Answer