Hey. I have an article system which pulls out articles from the db, but the obsticle ive bumped into is some rows may have not be published. My table...
id | article | author | pub
1 test me No
2 test2 me2 Yes
I only want to get rows out which are published (with pub = Yes). How do I do this in a mysql query? Thanks,