Hallo Leute,
ich bin in SQL nicht so bewandert und kriege folgendes auch nicht hin:
Ich habe eine Tabelle mit Produkten, jedes Produkt auf deutsch und auf englisch, das gleiche Produkt hat die gleiche id. Nun fehlt bei englisch die Produktbeschreibung - und hier soll die deutsche übernommen werden.
Wie kann ich das per SQL Befehl realisieren, habe schon mehreres mit Select, Insert und Where ausprobiert - aber nicht hinbekommen.
Also der text von language 1 soll jeweils in die spalte text kopiert werden - da wo es 1. die gleiche id gibt und 2. wo die language = 2 ist.
Tabelle products bisher:
---------------------------------
| id | language | text |
--------------------------------
| 1 | 1 | text1 |
| 1 | 2 | |
| 2 | 1 | text2 |
| 2 | 2 | |
| 3 | 1 | text3 |
| 3 | 2 | |
| 4 | 1 | text4 |
| 4 | 2 | |
| 5 | 1 | text5 |
| 5 | 2 | |
| 6 | 1 | text6 |
| 6 | 2 | |
-------------------------------
und so soll es werden
---------------------------------
| id | language | text |
--------------------------------
| 1 | 1 | text1 |
| 1 | 2 | text1 |
| 2 | 1 | text2 |
| 2 | 2 | text2 |
| 3 | 1 | text3 |
| 3 | 2 | text3 |
| 4 | 1 | text4 |
| 4 | 2 | text4 |
| 5 | 1 | text5 |
| 5 | 2 | text5 |
| 6 | 1 | text6 |
| 6 | 2 | text6 |
-------------------------------
Weiss einer wie ich das machen kann?
ich bin in SQL nicht so bewandert und kriege folgendes auch nicht hin:
Ich habe eine Tabelle mit Produkten, jedes Produkt auf deutsch und auf englisch, das gleiche Produkt hat die gleiche id. Nun fehlt bei englisch die Produktbeschreibung - und hier soll die deutsche übernommen werden.
Wie kann ich das per SQL Befehl realisieren, habe schon mehreres mit Select, Insert und Where ausprobiert - aber nicht hinbekommen.
Also der text von language 1 soll jeweils in die spalte text kopiert werden - da wo es 1. die gleiche id gibt und 2. wo die language = 2 ist.
Tabelle products bisher:
---------------------------------
| id | language | text |
--------------------------------
| 1 | 1 | text1 |
| 1 | 2 | |
| 2 | 1 | text2 |
| 2 | 2 | |
| 3 | 1 | text3 |
| 3 | 2 | |
| 4 | 1 | text4 |
| 4 | 2 | |
| 5 | 1 | text5 |
| 5 | 2 | |
| 6 | 1 | text6 |
| 6 | 2 | |
-------------------------------
und so soll es werden
---------------------------------
| id | language | text |
--------------------------------
| 1 | 1 | text1 |
| 1 | 2 | text1 |
| 2 | 1 | text2 |
| 2 | 2 | text2 |
| 3 | 1 | text3 |
| 3 | 2 | text3 |
| 4 | 1 | text4 |
| 4 | 2 | text4 |
| 5 | 1 | text5 |
| 5 | 2 | text5 |
| 6 | 1 | text6 |
| 6 | 2 | text6 |
-------------------------------
Weiss einer wie ich das machen kann?