From d554a2d7fb8f25111e92427250eedf5fe2224134 Mon Sep 17 00:00:00 2001 From: Francesco Borzì Date: Sat, 23 Feb 2019 14:12:09 +0100 Subject: Update Dealing-with-SQL-files.md --- docs/Dealing-with-SQL-files.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs') 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 -- cgit