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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:51:28+00:00 2026-05-13T11:51:28+00:00

I have two tables, landlords and properties. My properties table has; ID, Address, Postcode,

  • 0

I have two tables, landlords and properties. My properties table has; ID, Address, Postcode, lease and landlordID in it. The problem I face is: If I want to search for all the properties that have Mr.Spina as their landlord I need search the landlords database with the name “spina” to get his ID which is saved in the properties database from which I can extract the properties details.

I thought this would work but it doesn’t properly:

> SELECT property.ID, property.address, property.postcode, property.lease, landlords.firstName, landlords.lastName FROM property INNER JOIN landlords ON landlords.firstName LIKE '%spina%' OR landlords.lastName LIKE '%spina%'

I have attached images of the table structures.

Landlords:

only allowed one link

Properties:

http://img5.imageshack.us/img5/7199/propertyn.gif

The result of inserting “spina” into the field should then be:
only allowed one link

Here is my extracted code…

>  if($field=="landlord"){
>     
>     $sql="SELECT property.ID, property.address, property.postcode,
> property.lease, landlords.firstName,
> landlords.lastName FROM ".$do." INNER
> JOIN landlords ON landlords.firstName
> LIKE '%".$q."%' OR landlords.lastName
> LIKE '%".$q."%'";
>         }    else{
>     $sql="SELECT * FROM ".$do." WHERE " . $field . " LIKE '%" . $q . "%'";  
> }    //end special case     $result =
> mysql_query($sql);
>       echo "$sql";
>       echo "<table border='1'>
>     <tr>
>      <th>ID</th>
>      <th>Address</th>
>      <th>Post Code</th>
>      <th>Lease</th>
>      <th>Landlord</th>
>     </tr>";
> 
>    while($row =
> mysql_fetch_array($result))
>      {
>      echo "<tr>";
>      echo "<td>" . $row['ID'] . "</td>";
>      echo "<td>" . $row['address'] . "</td>";
>      echo "<td>" . $row['postcode'] . "</td>";
>      echo "<td>" . $row['lease'] . "</td>";
>      echo "<td>" . $row['firstName'] ." ". $row['lastName'] ."</td>";
>      echo "</tr>";
>      }    echo "</table>";
> 
>    mysql_close();

Many thanks in advance!

  • 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-13T11:51:29+00:00Added an answer on May 13, 2026 at 11:51 am

    Seems like you’re using INNER JOIN incorrectly; what you want is something like this:

    SELECT
        property.ID, property.address, property.postcode, property.lease, landlords.firstName, landlords.lastName
    FROM
        property
    INNER JOIN
        landlords
    ON 
        landlords.ID = property.landlord
    WHERE
        landlords.firstName LIKE '%spina%'
        OR
        landlords.lastName LIKE '%spina%'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Looks like a false-positive. Because modern viruses use polymorphism to… May 14, 2026 at 12:50 am
  • Editorial Team
    Editorial Team added an answer Most of the reason has to do with localization and… May 14, 2026 at 12:50 am
  • Editorial Team
    Editorial Team added an answer If you're using SimpleHTTPServer directly from command line, you can… May 14, 2026 at 12:50 am

Related Questions

I have two tables that are joined together. A has many B Normally you
I have two tables, Book and Tag , and books are tagged using the
I have two tables, both with start time and end time fields. I need
I have two tables containing Tasks and Notes, and want to retrieve a list
I have two tables in my database, called ratings and movies . Ratings: |

Trending Tags

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

Top Members

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.