createCommand method

  1. @override
String createCommand()
override
the text of the sql command that will create the object in the database

Implementation

@override
String createCommand() {
  return "CREATE VIEW `${this.name}` AS  ${this._select._sqlInSelect()}";
}