Hallo,
ich habe ein kleines Problem,
ich habe 2 Tabellen die ich mit folgender Abfrage aufrufe:
Ich brauche aber alle Datensätze wo die Telefonnummer aus der Tabelle tblAS0002 gleich ist, also habe ich die Abfrage erweitert.
Das geht aber leider so nicht, hat jemand nen Tip wie ich nur die doppelten Telefonnummern finde ?
Es ist ne MSSQL DB
Gruß und danke
Jan
ich habe ein kleines Problem,
ich habe 2 Tabellen die ich mit folgender Abfrage aufrufe:
PHP-Code:
SELECT [agvip].[dbo].[tblAS0002_PJ0017].Id,[agvip].[dbo].[tblAS0002_PJ0017].Ergebnis_Phase1,
[agvip].[dbo].[tblAS0002_PJ0017].IdAddress,[agvip].[dbo].[tblAS0002].CommPhoneCentral
FROM [agvip].[dbo].[tblAS0002_PJ0017]
LEFT JOIN [agvip].[dbo].[tblAS0002]
ON ([agvip].[dbo].[tblAS0002_PJ0017].IdAddress = [agvip].[dbo].[tblAS0002].Id)
WHERE [agvip].[dbo].[tblAS0002_PJ0017].Ergebnis_Phase1 IS NULL
PHP-Code:
SELECT [agvip].[dbo].[tblAS0002_PJ0017].Id,[agvip].[dbo].[tblAS0002_PJ0017].Ergebnis_Phase1,
[agvip].[dbo].[tblAS0002_PJ0017].IdAddress,[agvip].[dbo].[tblAS0002].CommPhoneCentral
FROM [agvip].[dbo].[tblAS0002_PJ0017]
LEFT JOIN [agvip].[dbo].[tblAS0002]
ON ([agvip].[dbo].[tblAS0002_PJ0017].IdAddress = [agvip].[dbo].[tblAS0002].Id)
WHERE [agvip].[dbo].[tblAS0002_PJ0017].Ergebnis_Phase1 IS NULL
AND [agvip].[dbo].[tblAS0002].CommPhoneCentral = [agvip].[dbo].[tblAS0002].CommPhoneCentral;
Es ist ne MSSQL DB
Gruß und danke
Jan
Kommentar