SQL UPDATE: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:


<syntaxhighlight lang='sql'>
<syntaxhighlight lang='sql'>
UPDATE person ...
UPDATE person SET name = 'Binh Ngo Jr.' WHERE id = 1;
</syntaxhighlight>
</syntaxhighlight>
:{| class="wikitable" style="text-align: left;"
:{| class="wikitable" style="text-align: left;"

Revision as of 23:25, 22 May 2024

Internal

Overview

UPDATE person SET name = 'Binh Ngo Jr.' WHERE id = 1;
PostgreSQL MySQL