to search the data from database

Logic is something like that

SELECT * FROM table  WHERE (condition)

For your case, you may as well use

SELECT 'mobile','name','id', '...any from its table...'   FROM table_name

Leave a Comment