myt/exporters/view.ejs

8 lines
213 B
Plaintext
Executable File

CREATE OR REPLACE DEFINER=<%- definer %>
SQL SECURITY <%- securityType %>
VIEW <%- schema %>.<%- name %>
AS <%- definition %><%
if (locals.checkOption != 'NONE') { %>
WITH <%- checkOption %> CHECK OPTION<%
} %>