Fully agree. I wanted to recommend Django for a friend to get started in web development but it's such a hassle to get started, I'd rather have him start with flask or even PHP..
I would much sooner introduce someone to Flask than I would to PHP and Laravel (which is, IMO, the best current PHP framework.) Flask has an easier learning curve than Django, and is able to handle small to large applications. Plus, Python is simply a better language than PHP.
This is coming from someone who writes a lot of PHP.
It's common to use SQLAlchemy with Flask, so the answer depends on how comfortable you are with that ORM.
That being said, you should absolutely at least learn the basics of working directly with databases. ORMs are a leaky abstraction, and you will run into situations where it's easier to drop into raw SQL to get the job done. Think of it like this: using GPS while driving is fine 95% of the time, but when it malfunctions or breaks, you're screwed unless you know how to read a map or ask for directions ;)
SQL are a leaky abstraction too, and ORMs get rid of an extremely high amount of common beginner errors.
Using raw SQL instead of an ORM is one of the best examples of premature optimization I can think of (unless you are very very good at SQL and have a very complicated structure).
Django's ORM is great for simple SQL. Anything moderately complex is going to require you to understand SQL, plus other features of the ORM (extra / raw queries).