O.K. also ließ uns mich sagen haben zwei Datenbank tables.
table: table_one table: table_two
table man hat das folgende fields id, Mitteilung, page table_two hat das folgende fields id, sitelink, text
Now ließ uns Tabelle man sagen hat dieses in seiner Aufzeichnung:
1:
2:
3:
| 1, Prüfung, 4 // Identifikation, Mitteilung, Seite
2, EE!! , 5 // Identifikation, Mitteilung, Seite
4, kühl, 4 // Identifikation, Mitteilung, Seite
|
table zwei hat dieses in seinem record
1:
2:
3:
4:
| 1, http://google.com, Google // Identifikation, URL, Text
2, http://ask.com, bitten um um //identifikation, URL, Text
3, http://microsoft.com, Identifikation Microsoft //, URL, Text
4, http://facebook.com, facebook //identifikation, URL, Text
|
The Daten innerhalb dieser Tabellen sind irellevant wirklich… gerade Fokus auf den IDs jedes table.
I möchten einen Index bilden, der uns… ihn sagen durchläuft Tabelle eine laufen lässt und lässt und aufzeigen alle IDs in ein Reihe (nicht sein muss eine Reihe - aber nur tun, was erforderlich ist), then, das es Tabelle 2 durchläuft und wenn die Identifikation NICHT dort… dann ist sie löscht!
So, in diesem Fall, da es die Aufzeichnung mit der Identifikation 3 innerer Tabelle zwei aber NICHT in Tabelle 1… dann es fand, würde es löschen, das es von Tabelle zwei… erhält, was ich sage?
here ist, was ich bis jetzt habe:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
| PHP
//-DATENBANK-ANSCHLUSS
$conn = mysql_connect („localhost“, „Wurzel“, "");
mysql_select_db („my_database“) oder sterben (mysql_error ());
$doexe = mysql_query („* vom `table_one `AUFTRAG DURCH `Identifikation `VORWÄHLEN ");
während ($do = mysql_fetch_array ($doexe)) {
Echo „$do [Identifikation] - $do [fname] - $do [lname] “;
$findemail = mysql_query („* vom `table_two `IN DEM `Identifikation `= UNGÜLTIGER AUFTRAG DURCH `Identifikation `VORWÄHLEN ");
während ($a = mysql_fetch_array ($findemail)) {
„Identifikation widerhallen, die gefunden wird, im table_two aber nicht im table_one gefunden ist -- Zeit zu löschen: $a [Identifikation] “;
}
}
? >
|
Thanks.
|