Answer the question
In order to leave comments, you need to log in
How to make two requests in one?
Goodnight! How can I combine two queries in mysql?
SELECT *, CONCAT(lastname,' ', firstname,' ', middlname) fio,
desired_profession, phone1, phone2, email1, payment
as concat FROM profil LIMIT 100
(`desired_profession` REGEXP 'продавец|продаж' )
Answer the question
In order to leave comments, you need to log in
SELECT
*,
CONCAT(lastname,' ', firstname,' ', middlname) fio,
desired_profession,
phone1,
phone2,
email1,
payment as concat
FROM profil
WHERE desired_profession REGEXP 'продавец|продаж'
LIMIT 100
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question