I gather info from my customer with a regular query:
select `ip`, `firstname`, `lastname` from `applications` where `pin` = '2232'
Is it possible to get also all the record that matches the customer ip in table from one pin number?
Example, one customer have one pin number, i make a request on this pin number and it returns me not only the info linked to this pin number but also the info from all other customer that used the same ip of the first customer.
Thank you for your help.
Probably a way to do this without two selects, but this will work.