Pulling specific cell data from mySQL db
Moderator: General Moderators
Pulling specific cell data from mySQL db
If i have a table, UserData, which columns userID username, password, title, email, title 1, title2, ... title 10, text 1, text 2, ... text 10 and the rows use userID as a primary identifier, how would i reteive data from say userID #7, and from the title10 column?
time to read yourself an introduction into sql?
Code: Select all
SELECT column10
FROM foo
WHERE userID=7;