Variable: sql-ansi-statement-starters

sql-ansi-statement-starters is a variable defined in sql.el.gz.

Value

"\\(?:alter\\|create\\|d\\(?:elete\\|rop\\)\\|grant\\|insert\\|merge\\|revoke\\|select\\|update\\)"

Documentation

Regexp of keywords that start SQL commands.

All products share this list; products should define a regexp to identify additional keywords in a variable defined by the :statement feature.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
;; Motion Function Keywords

(defvar sql-ansi-statement-starters
  (regexp-opt '("create" "alter" "drop"
                "select" "insert" "update" "delete" "merge"
                "grant" "revoke"))
  "Regexp of keywords that start SQL commands.

All products share this list; products should define a regexp to
identify additional keywords in a variable defined by
the :statement feature.")