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 8525503
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T07:59:48+00:00 2026-06-11T07:59:48+00:00

I have a table with java package names: |id|pkg| |1 |some.long.package.path| |2 |com.admob.bla| and

  • 0

I have a table with java package names:

|id|pkg|
|1 |some.long.package.path|
|2 |com.admob.bla|

and a table that contains partial packages names form known advertisement frameworks.

|id|path_fragment|
|1 |.admob |

How can I retrieve packages whose value for pkg contains any of the ad_frameworks.path_fragment?

I just can’t find the substring check. All I find is people using like to compare to some string literal but never for comparing columns.

NOTE: I am using MySQL.

  • 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-06-11T07:59:50+00:00Added an answer on June 11, 2026 at 7:59 am

    think you could do an inner join with a like

    select p.id, p.pkg
    from package p
    inner join ad_frameworks adf on p.pkg like CONCAT('%', adf.path_fragment, '%')
    --group by p.id, p.pkg
    

    or as you pointed

    select * 
    from package p
    inner join ad_frameworks adf on LOCATE(adf.fragment, p.pkg) > 0
    

    or

    select * 
    from package p
    inner join ad_frameworks adf on INSTR( p.pkg,adf.fragment) > 0
    

    or

    select * 
    from package p
    inner join ad_frameworks adf on POSITION(adf.fragment IN p.pkg) > 0
    

    or

    select * 
    from package p
    inner join ad_frameworks adf on REPLACE(p.pkg, adf.fragemnt, '') <> p.pkg
    

    Well, you’ve got few choices 😉

    SqlFiddle

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a MySQL table for persistence of some Java objects and use Hibernate
I have a HBase table (from java) and i want to query the table
i have one table TABLE_SUBJECT And i pass subject name to DBHelper.java. Then i
I have a java class containing all the columns of a database table as
I have table with around 70 000 rows. There is 6000 rows that i
I have table and this table contain result column with some entries. I just
I have table of data that is sorted as follows: Item | Sample |
I have an entity class: Cabbage.java package womble; public class Cabbage { private int
I have the following class: package lt.vic.valdos.domain.valda; public class Valda implements java.io.Serializable { private
I have some code copied from the fitness website: package fixtures; import static fitnesse.util.ListUtility.list;

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.