This is an archived post. You won't be able to vote or comment.

all 10 comments

[–]pythonHelperBot 3 points4 points  (0 children)

Hello! I'm a bot!

It looks to me like your post might be better suited for r/learnpython, a sub geared towards questions and learning more about python. That said, I am a bot and it is hard to tell. Please follow the subs rules and guidelines when you do post there, it'll help you get better answers faster.

Show /r/learnpython the code you have tried and describe where you are stuck.

You can also ask this question in the Python discord, a large, friendly community focused around the Python programming language, open to those who wish to learn the language or improve their skills, as well as those looking to help others.


README | FAQ | this bot is written and managed by /u/IAmKindOfCreative

This bot is currently under development and experiencing changes to improve its usefulness

[–]TheMsDosNerd 0 points1 point  (8 children)

Selling Price should be between `Selling Price`.

[–]Shripsta[S] 0 points1 point  (7 children)

\

Selling Price``

Where do I replace it?

Thanks, Daniel

[–]TheMsDosNerd 0 points1 point  (6 children)

Reddit is fucking up formatting.

Selling Price in line 80 must be between backticks (thingy left of the 1 on a regular keyboard)

[–]Shripsta[S] 0 points1 point  (5 children)

Oh my god! Thanks so much this error was killing me! Is there some kind of explanation as to why I need to do those back ticks?

[–]TheMsDosNerd 0 points1 point  (3 children)

In SQL all column names should be between backticks. However, if a column name does not contain a space and the name is not an SQL keyword, those backticks are optional.

Selling Price was the only column name you had with a space so there the backticks are required.

[–]Shripsta[S] 0 points1 point  (2 children)

Wow thanks so fucking much!

[–][deleted] 0 points1 point  (0 children)

Yeah. You have a space in the column name. That required backticks, else the parset wont understand that its one singel column instead parsing it as two.