diff options
| author | Francesco Borzì <borzifrancesco@gmail.com> | 2019-02-23 14:12:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-23 14:12:09 +0100 |
| commit | d554a2d7fb8f25111e92427250eedf5fe2224134 (patch) | |
| tree | 4b4aff0e1064523bc9a10d1318154d9c5d123895 /docs | |
| parent | 6d244b98de1e88496492d708b7a54d6d752befad (diff) | |
| download | wiki-d554a2d7fb8f25111e92427250eedf5fe2224134.tar.gz wiki-d554a2d7fb8f25111e92427250eedf5fe2224134.tar.bz2 wiki-d554a2d7fb8f25111e92427250eedf5fe2224134.zip | |
Update Dealing-with-SQL-files.md
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/Dealing-with-SQL-files.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/Dealing-with-SQL-files.md b/docs/Dealing-with-SQL-files.md index edf83d7..059c4c3 100644 --- a/docs/Dealing-with-SQL-files.md +++ b/docs/Dealing-with-SQL-files.md @@ -12,7 +12,9 @@ Also remember to: - surround any table or field name with `backticks`, and string values with `single quotes`, example: -``UPDATE `table_name` SET `field_I_want_to_change` = 'new string value' WHERE `entry` = 10 ;`` +```SQL +UPDATE `table_name` SET `field_I_want_to_change` = 'new string value' WHERE `entry` = 10 ; +``` ## Write compact code |
