Hallo zusammen,
ich bin blutiger Anfänger in Sachen Programmierung. Nun habe ich aber folgendes Problem.
Aus unserem ERP-System bekomme ich die folgende SQL-Abfrage
sql = "select a.customer_id KDNR,c.name Name,a.country Land,a.zip_code PLZ,a.city Ort,a.address1 Anschrift1, " &_
"a.address2 Anschrift2, b.address_type_code_db db,b.def_address def from " &_
"ifsapp.customer_info_address_type b," &_
"ifsapp.customer_info_address a," &_
"ifsapp.customer_info c " &_
"where " &_
"a.customer_id = b.customer_id " &_
"and a.address_id = b.address_id " &_
"and b.address_type_code_db = 'INVOICE' " &_
"and b.def_address = 'TRUE' " &_
"and b.customer_id = c.customer_id " &_
"and a.customer_id like ('" & kdnr & "') " &_
"order by " &_
"c.name "
Welche mir die Adressen unserer Kunden ausgibt. Nun möchte ich zu jedem einzelnen Kunden aus
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!