Beste,
hulp gezocht bij update van veld info door info die in een andere tabel
te vinden is. Dit enkel voor records in tabel persoon waar
persoon.IDpersoon een match heeft met nieuw.IDpersoon
Probleem:
Ik wil in LO-base. waarden in een tabel aanpassen.
Maar niet door een vaste waarde zoals "fiets" of 1234 maar door inhoud
vanuit een andere tabel
waarbij er een link is via eenzelfde ID.
create table "persoon"
(IDpersoon int, GSM varchar(13), primary key(IDpersoon));
insert into table "persoon" values
(1, '0499228833');
insert into table "persoon" values
(2, '0492 84 22 33');
insert into table "persoon" values
(3, '0422 33 44 86');
insert into table "persoon" values
(4, '0428885523');
create table "nieuw" as n
(IDpersoon int, GSM varchar(13), primary key (IDpersoon));
insert into table "nieuw" values
(1, '0499 22 88 33');
insert into table "nieuw" values
(4, '0428 88 55 23');
Onderstaande update opdracht verandert in
record 2 en 3 van persoon de GSM in een leeg veld. Dat is natuurlijk
niet de bedoeling. :-)
update "persoon"
set "GSM"=(select "nieuw"."GSM" from "nieuw" where
"nieuw"."IDpersoon"="persoon"."IDpersoon")
Dank vooraf. Groeten, Ivo
--
Unsubscribe instructions: E-mail to users+unsubscribe@nl.libreoffice.org
Posting guidelines + more: https://wiki.documentfoundation.org/Netiquette
List archive: https://listarchives.libreoffice.org/nl/users/
Privacy Policy: https://www.documentfoundation.org/privacy
Context
- [nl-users] Update van mijn vraag: update van veld door info uit een andere tabel, enkel bij overeenkomende ID · Ivo Raepsaet
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.