diff options
author | bobdc <bob@bobdc.com> | 2018-10-31 12:50:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 12:50:32 -0400 |
commit | e30222273bbf1aa10574e70a1c7d1557ed89ea7f (patch) | |
tree | f800777b72949e7d91620de1e9d451773edffa2b /sql.html.markdown | |
parent | 4def7beeab6d82eb256e9266b4be884c644dd595 (diff) |
make edits requested by divayprakash
https://github.com/adambard/learnxinyminutes-docs/pull/3349
Diffstat (limited to 'sql.html.markdown')
-rw-r--r-- | sql.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql.html.markdown b/sql.html.markdown index 0dc07eb5..8f200344 100644 --- a/sql.html.markdown +++ b/sql.html.markdown @@ -2,8 +2,8 @@ language: SQL filename: learnsql.sql contributors: -- ["Bob DuCharme", "http://bobdc.com/"] -lang: en-en + - ["Bob DuCharme", "http://bobdc.com/"] +https://github.com/adambard/learnxinyminutes-docs --- Structured Query Language (SQL) is an ISO standard language for creating and working with databases stored in a set of tables. Implementations usually add their own extensions to the language; [Comparison of different SQL implementations](http://troels.arvin.dk/db/rdbms/) is a good reference on product differences. @@ -13,7 +13,7 @@ Implementations typically provide a command line prompt where you can enter the 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 # Comments start with a pound sign. End each command with a semicolon. # SQL is not case-sensitive about keywords. The sample commands here |