Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 398 Bytes

File metadata and controls

19 lines (14 loc) · 398 Bytes
title Update a Table
sidebarTitle Update a Table

Description

The runQuery() function executes a query given as its argument directly in MindsDB.

Syntax

Here is the syntax:

const query = `UPDATE integration_name.table_name
               SET column_name = new_value
               WHERE column_name = old_value`;
const queryResult = await MindsDB.SQL.runQuery(query);