Hello, I am having one table in mysql which is having the fields for the invitation along with the userId. I want to retrieve only first record for a particular userId using query at a time. What's the syntax of retrieving only one value from the table using Mysql query? please help me. Thanks in advance.
Is it: SELECT whatever_column FROM table WHERE userid = 'joe' LIMIT 1 or are you looking for something else?