diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-18 22:58:53 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-18 22:58:53 -0700 |
commit | c69560d48c5ad452eefa38a82d7537c57daa93e0 (patch) | |
tree | f5d518f4844e4bbbf30cc0369c9971e77bb45413 /sql.html.markdown | |
parent | baf63b1f0838fc078f0221bdeb2cf12baeccf6c2 (diff) |
github -> GitHub
Diffstat (limited to 'sql.html.markdown')
-rw-r--r-- | sql.html.markdown | 2 |
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 |