Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MySQL support (DDL) #59

Open
7 of 55 tasks
Tracked by #7
nene opened this issue Jan 15, 2024 · 0 comments
Open
7 of 55 tasks
Tracked by #7

MySQL support (DDL) #59

nene opened this issue Jan 15, 2024 · 0 comments

Comments

@nene
Copy link
Owner

nene commented Jan 15, 2024

DDL Statements

  • view
    • CREATE VIEW
      • OR REPLACE
      • ALGORITHM = UNDEFINED | MERGE | TEMPTABLE
      • DEFINER = user
      • SQL SECURITY { DEFINER | INVOKER }
      • column list
      • WITH [CASCADED | LOCAL] CHECK OPTION
    • DROP VIEW
      • IF EXISTS
      • multiple views
      • RESTRICT | CASCADE
    • ALTER VIEW
      • ALGORITHM = UNDEFINED | MERGE | TEMPTABLE
      • DEFINER = user
      • SQL SECURITY { DEFINER | INVOKER }
      • column list
      • WITH [CASCADED | LOCAL] CHECK OPTION
  • database
    • CREATE DATABASE
    • DROP DATABASE
    • ALTER DATABASE
  • event
    • CREATE EVENT
    • DROP EVENT
    • ALTER EVENT
  • function
    • CREATE FUNCTION
    • CREATE PROCEDURE
    • DROP FUNCTION
    • DROP PROCEDURE
    • ALTER FUNCTION
    • ALTER PROCEDURE
  • logfile group
    • CREATE LOGFILE GROUP
    • DROP LOGFILE GROUP
    • ALTER LOGFILE GROUP
  • server
    • CREATE SERVER
    • DROP SERVER
    • ALTER SERVER
  • tablespace
    • CREATE TABLESPACE
    • DROP TABLESPACE
    • ALTER TABLESPACE
  • spatial reference system
    • CREATE SPATIAL REFERENCE SYSTEM
    • DROP SPATIAL REFERENCE SYSTEM
  • trigger
    • CREATE TRIGGER
    • DROP TRIGGER
  • index
    • CREATE INDEX
    • DROP INDEX
  • ALTER INSTANCE
@nene nene mentioned this issue Jan 15, 2024
8 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant