summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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