A4セルにSQLを貼り付けてFormatボタンをクリックするとB4セルに整形後のSQLが出力されます。 Sub ButtonClick() Dim sql As String sql = Range("A4").Value sql = EmptyReplace(sql) sql = FormatSQL(sql) Do While InStr(sql, vbCrLf ...
pre-commit is a nice development tool to automatize the binding of pre-commit hooks. After installation and configuration pre-commit will run your hooks before you commit any change. CREATE OR REPLACE ...