通過drop mapping table語句刪除表的映射關係。

说明 關於drop mapping table語句的更多資訊,請參見刪除映射關係

前提條件

參數

參數 說明
query SQL語句,請根據所需功能進行設定。

樣本

使用DROP MAPPING TABLE `tableName`;語句刪除tableName表的映射關係。

$request = array(
    'query' => 'DROP MAPPING TABLE `tableName`;'
);
$response = $this->otsClient->sqlQuery($request);
print json_encode($sqlRows, JSON_PRETTY_PRINT);