User Tools

Site Tools


Sidebar

HPL/SQL is included to Apache Hive since version 2.0

update

This is an old revision of the document!


A PCRE internal error occured. This might be caused by a faulty plugin

====== UPDATE Statement ====== UPDATE statement allows you to update columns of existing rows in the specified table. **Syntax**: <code language="sql"> UPDATE table_name SET col = expr [, coln = exprn] ... [WHERE condition] UPDATE table_name SET (col [,coln]...) = (expr [, exprn] ... | select_statement) [WHERE condition] </code>