Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oliviermarin/c3a7c33f4e3725c10e9d2e5f2d30a45a to your computer and use it in GitHub Desktop.
Save oliviermarin/c3a7c33f4e3725c10e9d2e5f2d30a45a to your computer and use it in GitHub Desktop.
INSERT INTO public.personne(
id,
age,
prenom,
nom)
SELECT
id,
age,
prenom, // Donnees précédante
'Dupont' // modification valeur
FROM public.personne
WHERE public.personne.nom = 'Martin';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment