I am joining 3 tables to get the desire result, but for one user I am getting 4 rows(only two column attributes are changed, all other attributes are same for one particular user).
My required output I want to get single row which contains different rows attributes as separate columns instead of different attributes in 4 different rows.
Here is my current Query
SELECT
CONCAT(
'https://example.com/?search=',
comment_content
) AS link,
wp_comments.user_id,
user_email,
user_login,
user_nicename,
comment_date as 'Interview Date',
display_name,
user_registered,
meta_key,
meta_value
