for example my database includes 4 columns post_id, post_title,post_tag and post_story. is it possible to find post_tag using post_title?
Asked
Active
Viewed 25 times
0
-
Which result do you want? "post_title"? – JimL Mar 26 '17 at 13:11
-
This question makes no sense whatsoever. All rows have the same columns in a relational database. – Gordon Linoff Mar 26 '17 at 13:12
-
oh yes ,sorry it made no sense indeed. i was trying to find value of post_tag using post_title. i am kinda dumb sorry. – Nav Sandhu Mar 26 '17 at 13:29
-
`SELECT post_tag FROM myTable WHERE post_title=?` – Mark Baker Mar 26 '17 at 13:30
-
yes, thats what i wanted . thanks – Nav Sandhu Mar 26 '17 at 14:13