Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6725849
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:51:22+00:00 2026-05-26T09:51:22+00:00

In phpMyAdmin , there is a search in database feature by which I can

  • 0

In phpMyAdmin, there is a search in database feature by which I can input a word and find it in any table(s).

How to implement it by SQL statement? I know the LIKE operation, but it’s syntax is:

WHERE column_name LIKE pattern

How to search in all columns? Any how to specify it’s a exact keyword or regular express?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:51:23+00:00Added an answer on May 26, 2026 at 9:51 am
    SELECT * FROM your_table_name WHERE your_column_name LIKE 'search_box_text';
    

    Where search_box_text is what you enter in the search. It will also say in the result page what kind of query it made. The same query with regular expressions is:

    SELECT * FROM your_table_name WHERE your_column_name REGEXP 'search_box_text';
    

    Remember that the wildcard in mysql is %. Eg. “LIKE ‘%partial_search_text%’

    If you want to search in multiple columns, you can check which columns are in table with:

    DESCRIBE TABLE your_table_name;
    

    Or if you already know your columns:

    SELECT * FROM your_table_name 
    WHERE your_column_1 LIKE '%search%' 
    AND your_column_2 LIKE '%search%'
    AND your_column_3 LIKE '%search%';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a tool like phpMyAdmin which can be configured to access only a
In phpMyAdmin I can delete rows without using SQL. Is there a way to
I've noticed that PHPmyAdmin creates the following SQL for table creation: CREATE TABLE something
Under the structure tab, when EXPORTing a database using phpmyadmin there is a check
Is there a command line script/tool I can use to administer a mysql database.
Is there a clean way (no hardcoding) in which I can dump all the
I have a phpmyadmin database with 1 000 000 record i need to search
Is there a plugin for Symfony which works like phpMyAdmin?
Is there any way w/o majorly rewriting the phpMyAdmin source code to have a
there is a table named product which has a field named image . the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.