Remove a View

The dropView() function removes a view from MindsDB.

Syntax

/**
 * Drop a view
 * 
 * @param name name of the view
 */
 public void dropView(String name);

Example

server.dropView("car_info_view");
Updated on