update Global!DB += oem(Osoba : oem (Imie:"Krzysztof", Imie:"Jan", Nazwisko : "Stencel")); update DB.Osoba += oem(Imie:"Agnieszka", Imie:"Hanna", Nazwisko:"Stencel"); update DB.Osoba += oem(Imie:"Julia", Imie:"Weronika", Nazwisko:"Stencel"); update DB.Osoba += oem(Imie:"Klaudia", Imie:"Magdalena", Nazwisko:"Stencel"); update DB.Osoba += oem(Imie:"Natalia", Imie:"Korneliaa", Nazwisko:"Stencel"); update x.Tata := (select Y from DB.Osoba Y where Y.Imie = "Krzysztof") from DB.Osoba x where x.Imie = "Julia" or x.Imie = "Klaudia" or x.Imie = "Natalia"; update x.Mama := (select Y from DB.Osoba Y where Y.Imie = "Agnieszka") from DB.Osoba x where x.Imie = "Julia" or x.Imie = "Klaudia" or x.Imie = "Natalia"; update x.Dziecko := (select Y from DB.Osoba Y where Y.Imie = "Julia" or Y.Imie = "Klaudia" or Y.Imie = "Natalia") from DB.Osoba x where x.Imie = "Krzysztof" or x.Imie = "Agnieszka"; exit;