omegatemplar
Programmer
I have a database with a 15 columns
1 is a title
14 other are true/false categories containing genre types
For example:
BookName | Scifi |Fantasy |Mystery
Star Trek | True | True | False
How would I select the book name and all the values that are true for that specific book so that I get back
BookName | Scifi | Fantasy
Star Trek | True | True
Thanks.
1 is a title
14 other are true/false categories containing genre types
For example:
BookName | Scifi |Fantasy |Mystery
Star Trek | True | True | False
How would I select the book name and all the values that are true for that specific book so that I get back
BookName | Scifi | Fantasy
Star Trek | True | True
Thanks.