From 45d49bc05ede7bb038dbdc7e8f5962497645bb3b Mon Sep 17 00:00:00 2001 From: Adam Bard Date: Sun, 4 Nov 2018 09:52:15 -0800 Subject: [PATCH] Eschew backticks in sql --- sql.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql.html.markdown b/sql.html.markdown index 392b0edf..2bece208 100644 --- a/sql.html.markdown +++ b/sql.html.markdown @@ -83,7 +83,7 @@ WHERE TABLE_TYPE='BASE TABLE'; -- Create a table called tablename1, with the two columns shown, for -- the database currently in use. Lots of other options are available -- for how you specify the columns, such as their datatypes. -CREATE TABLE tablename1 (`fname` VARCHAR(20),`lname` VARCHAR(20)); +CREATE TABLE tablename1 (fname VARCHAR(20), lname VARCHAR(20)); -- Insert a row of data into the table tablename1. This assumes that the -- table has been defined to accept these values as appropriate for it.