Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases

Nursultan Bolatbayev
Nursultan Bolatbayev
16,774 Points

There is any postresql course?

All the database courses are taught here by Andrew Chalkley based on MySQL. But Im going to build a website on Django, and Postresql is the most recommended sql for Django. Do you think using MySQL will be fine for my website? Which one is smootly integrated with Django? I want to learn sql at treehouse, because I love the way of teaching here.

1 Answer

There shouldn't be too many differences for the regular things you'll do, and if you're using Django, you're most likely to be interacting with the database via the Django ORM.

In most cases, you'll just try your SQL, hopefully in a development environment, and if it doesn't work in your chosen flavour of SQL, check the documentation, ask here about specific use case, or search on Stack Overflow or something.

Nursultan Bolatbayev
Nursultan Bolatbayev
16,774 Points

Thanks for reply. U mean all SQL (in our case MySQL and Postgres) basic syntaxes and logic are the same? On Django all work with database is done thgrough ORM, not directly programming and interacting with SQL?

Yes, exactly! You can send regular SQL commands using the Django ORM, but it wouldn't be common.