this is going to be a bit complicated. But I'll try to explain what I'm trying to do.
I've got a table in a database as follows:
Table - Entries
ID | User | Address | Workflow | Audit Date |
1 | Tim | 123 | 10 p/w | 22/2/2013 |
2 | Bob | 222 | 20 p/w | 22/2/2013 |
Now in a corresponding table i have pictures:
Table - Pictures
ID | JobNo | User | ImagePath | ImageName |
52 | 1 | Tim | /1.jpg | /2.jpg |
53 | 1 | Tim | /3.jpg | /4.jpg |
Now Pictures.Jobno corresponds to Entries.ID
Alright so what I'm after, is to list all entries from table Entries when the related jobNo has more than 2 image entries. if it has 1 or less, I want to ignore the listing.
So at the moment I can call entries like this through php:
function getAllEntries() {
$mysqli = new mysqli(DB_SERVER, DB_USER, DB_PASSWORD, DB_NAME);
if (!($query = $mysqli->prepare("SELECT * FROM Entries
ORDER BY Date DESC"))) {
echo "Prepare failed: (" . $mysqli->errno . ") " . $mysqli->error;
}
if (!$query->execute()) {
echo "Execute failed: (" . $query->errno . ") " . $query->error;
}
$query->bind_result($ID, $User, $Address, $Workflow, $Audit);
while ($query->fetch()) {
//Echo each entry here
}
$query->close();
$mysqli->close();
}
My issue is, how do I then incorporate what I want to do? I want to say:
Select all entries, where in table Pictures there are 2 or more images corresponding to the job number/id comparison in the Entries table.
I'm sure this doable. But I can't think of the sql statement or how to bind it in a prepared statement correctly
SELECT * FROM Entries, Pictures, Where Pictures.Jobno = ID.Entries AND (row amount in pictures) >= 2.
Or something? Is this just an SQL problem? Or do I need an if statement and to run a separate SQL query.
I'm self taught with php and sql I'm afraid - so I don't quite know how to resolve this myself.
left joinon entries and pictures for this – Philipp Feb 10 at 18:58