summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2019-02-23 14:12:09 +0100
committerGitHub <noreply@github.com>2019-02-23 14:12:09 +0100
commitd554a2d7fb8f25111e92427250eedf5fe2224134 (patch)
tree4b4aff0e1064523bc9a10d1318154d9c5d123895
parent6d244b98de1e88496492d708b7a54d6d752befad (diff)
downloadwiki-d554a2d7fb8f25111e92427250eedf5fe2224134.tar.gz
wiki-d554a2d7fb8f25111e92427250eedf5fe2224134.tar.bz2
wiki-d554a2d7fb8f25111e92427250eedf5fe2224134.zip
Update Dealing-with-SQL-files.md
-rw-r--r--docs/Dealing-with-SQL-files.md4
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