myt/exporters/view.ejs

6 lines
196 B
Plaintext
Raw Normal View History

CREATE OR REPLACE DEFINER=<%- definer %>
SQL SECURITY <%- securityType %>
VIEW <%- schema %>.<%- name %>
2020-11-14 01:38:56 +00:00
AS <%- definition %><% if (checkOption != 'NONE') { %>
WITH CASCADED CHECK OPTION<% } %>