diff options
author | Adam Bard <adam@adambard.com> | 2018-11-04 09:52:15 -0800 |
---|---|---|
committer | Adam Bard <adam@adambard.com> | 2018-11-04 09:52:15 -0800 |
commit | 45d49bc05ede7bb038dbdc7e8f5962497645bb3b (patch) | |
tree | 17ac79ec6ab8f57fc2a953bdf543cae1a8ebbf28 /sql.html.markdown | |
parent | f363c6459f31665ef3d635a6a22cc25ef6a146b5 (diff) |
Eschew backticks in sql
Diffstat (limited to 'sql.html.markdown')
-rw-r--r-- | sql.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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. |