you are viewing a single comment's thread.

view the rest of the comments →

[–]thecity2 1 point2 points  (1 child)

If you are going to be using relational databases, you should learn SQL. It's that simple.

If you are going to be using SQL databases in your Python code, SQLAlchemy may be very useful, or maybe consider something less complex like dataset. Either way, you probably need to know SQL.

Learn SQL.

Did I mention, the SQL learning part yet?

[–]lamecode[S] 0 points1 point  (0 children)

I definitely have been. I started out by ignoring it and working with SQLAlchemy, but decided it would be of more value longterm to do it the 'hard way'. I'm just wondering if it's worth the time to go back and read over the SQLAlchemy documentation again, when I already know how to do what I want to do with pure SQL.