I haven't found an answer specific enough for exactly what I'm looking for, so I'm hoping this isn't a duplicate question.
I am trying to create a list of full names in a results list that looks like this:
id | form_id | element_label | element_value | group_id
245 10 1 John 34
245 10 2 A 34
245 10 3 Doe 34
245 10 1 George 35
245 10 2 C 35
245 10 3 Washington 35
This is from my query:
SELECT * FROM jm3_formmaker_submits WHERE form_id = '10' AND element_label <4
The result I want would be:
group_id | full_name
34 John A Doe
35 George C Washington
Thank you so very much for your help.