I want to fetch primary key of all rows of one table in a single query.
I implement it using query --
SELECT GROUP_CONCAT( id SEPARATOR ',' ) AS ids
FROM tbl_facebook_users
WHERE facebook_user_id
IN ( 336120419901063, 10205028697461204 )
It is giving result as:
Result :-
ids
-----------
[BLOB - 4B]
What is the solution to implement this feature and get correct result??