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

  • Home
  • SEARCH
  • 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 873013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:52:08+00:00 2026-05-15T10:52:08+00:00

i need some code for search some data inside DB… i have two fields

  • 0

i need some code for search some data inside DB…
i have two fields that is id and name…
if i type “ABC” it can show all data about “ABC”..
if “DEF”=>all DEF data…or i type anything it can show that “anything”…

i’m just know how to show all data inside fields that makes “ABC” and “DEF” show together,the code like this:

"SELECT ID,Name FROM Regist ORDER BY date";
  • 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-15T10:52:09+00:00Added an answer on May 15, 2026 at 10:52 am

    MySQL wildcards: _ AND % (in conjunction with keyword LIKE)


    _ denotes a single character

    SELECT name FROM colors WHERE name LIKE 'gr_y';
    

    Output: ‘grAy’, ‘grEy’.


    % denotes any number of characters

    SELECT name FROM colors WHERE name LIKE 'gr%';
    

    Output: ‘grAY’, ‘grEY’, ‘grEEN’.


    You can use both _ and % multiple times

    SELECT name FROM color WHERE name LIKE '_ra%';
    

    Output: ‘GraY’, ‘OraNGE’.


    In your case, if you want to list the names containing starting with either ‘ABC’ or ‘DEF’, your query would be like this:

    SELECT id,name FROM Regist
        WHERE name LIKE 'ABC%' OR name LIKE 'DEF%'
        ORDER BY date
    

    If you want your names to contain the strings ‘ABC’ OR ‘DEF’ anywhere inside, your query would be:

    SELECT id,name FROM Regist
        WHERE name LIKE '%ABC%' OR name LIKE '%DEF%'
        ORDER BY date
    

    Finally, if you want your names to contain both ‘ABC’ AND ‘DEF’ you could use:

    SELECT id,name FROM Regist
        WHERE name LIKE '%ABC%DEF%' OR name LIKE '%DEF%ABC%'
        ORDER BY date
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 524k
  • Answers 524k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If you get an email every time an error occurs,… May 16, 2026 at 9:52 pm
  • Editorial Team
    Editorial Team added an answer You can right click on a folder in solution explorer… May 16, 2026 at 9:52 pm
  • Editorial Team
    Editorial Team added an answer Probably is APC related. For the people having this problem,… May 16, 2026 at 9:52 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have a tab delimited text file that I need to upload to a
I've started to wrap my functions inside of Objects, e.g.: var Search = {
I'm editing some code which wasn't written by myself but someone who's no longer
I need to get the exact DataGridColumn that is associated with the DataGridColumnHeader. So,
I have a method which have this signature public static IList<T> GetBy<T>(System.Linq.Expressions.Expression<Func<T, bool>> expression)
I am a graduate student of physics and I am working on writing some
I need to find the size of a JPEG (JFIF) image. The image is
I'm a fairly new programmer and very new to web programming and I need
Can anyone recommend a fast way to sort the contents of a text file,
I am parsing the domain name out of a string by strchr() the last

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.