如果不再需要使用映射表,您可以通過drop mapping table語句刪除映射關系。單次請求支持刪除多個映射關系。
說明
關于drop mapping table語句的更多信息,請參見刪除映射關系。
前提條件
參數
參數 | 說明 |
query | SQL語句,請根據所需功能進行設置。 |
示例
以下示例用于使用drop mapping table test_table語句刪除test_table表的映射關系。
const params = {
query: "drop mapping table test_table",
}
client.sqlQuery(params, function (err, data) {
if (err) {
console.log('sqlQuery error:', err.toString());
} else {
console.log('sqlQuery success:', data);
}
});
相關文檔
文檔內容是否對您有幫助?