summaryrefslogtreecommitdiffhomepage
path: root/sql.html.markdown
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-18 22:58:53 -0700
committerBoris Verkhovskiy <boris.verk@gmail.com>2024-04-18 22:58:53 -0700
commitc69560d48c5ad452eefa38a82d7537c57daa93e0 (patch)
treef5d518f4844e4bbbf30cc0369c9971e77bb45413 /sql.html.markdown
parentbaf63b1f0838fc078f0221bdeb2cf12baeccf6c2 (diff)
github -> GitHub
Diffstat (limited to 'sql.html.markdown')
-rw-r--r--sql.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql.html.markdown b/sql.html.markdown
index 834cf00b..5c933465 100644
--- a/sql.html.markdown
+++ b/sql.html.markdown
@@ -9,7 +9,7 @@ Structured Query Language (SQL) is an [ISO/IEC 9075](https://www.iso.org/standar
Implementations typically provide a command line prompt where you can enter the commands shown here interactively, and they also offer a way to execute a series of these commands stored in a script file. (Showing that you’re done with the interactive prompt is a good example of something that isn’t standardized--most SQL implementations support the keywords QUIT, EXIT, or both.)
-Several of these sample commands assume that the [MySQL employee sample database](https://dev.mysql.com/doc/employee/en/) available on [github](https://github.com/datacharmer/test_db) has already been loaded. The github files are scripts of commands, similar to the relevant commands below, that create and populate tables of data about a fictional company’s employees. The syntax for running these scripts will depend on the SQL implementation you are using. A utility that you run from the operating system prompt is typical.
+Several of these sample commands assume that the [MySQL employee sample database](https://dev.mysql.com/doc/employee/en/) available on [GitHub](https://github.com/datacharmer/test_db) has already been loaded. The GitHub files are scripts of commands, similar to the relevant commands below, that create and populate tables of data about a fictional company’s employees. The syntax for running these scripts will depend on the SQL implementation you are using. A utility that you run from the operating system prompt is typical.
```sql