From 9ec447109f73efca6f0f63f782e99fe44d770430 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 14 Feb 2021 17:54:00 -0800 Subject: [PATCH] Oracle dialect suppresses AS --- doc/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting-started.md b/doc/getting-started.md index 09d3865..63a0048 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -245,7 +245,7 @@ The most visible difference between dialects is how SQL entities should be quoted (if the `:quoted true` option is provided to `format`). Most databases use `"` for quoting (the `:ansi` and `:oracle` dialects). The `:sqlserver` dialect uses `[`..`]` and the `:mysql` dialect uses -```..```. +```..```. In addition, the `:oracle` dialect disables `AS` in aliases. Currently, the only dialect that has substantive differences from the others is `:mysql` which has a `:lock` clause (that is very