Heads up! To view this whole video, sign in with your Courses Plus account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed Using SQL and Node.js with Sequelize!

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
In this video we'll retrieve single and multiple rows of data from tables.
Important Notice About the findById()
Method
Since the recording of this workshop, the Sequelize findById()
method has been deprecated and replaced by the findByPk()
method.
Using the findByPk()
method, the code for the route to get an individual article looks like this:
/* GET individual article. */
router.get('/:id', function(req, res, next) {
Article.findByPk(req.params.id).then((article) => {
res.render('articles/show', { article: article, title: article.title });
});
});
Sequelize Methods
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Nick Hericks
Full Stack JavaScript Techdegree Graduate 20,704 Points1 Answer
-
Anthony Candaele
Full Stack JavaScript Techdegree Student 32,135 Points5 Answers
-
qadyudnbsv
849 Points1 Answer
-
Thomas Dimnet
Python Development Techdegree Graduate 43,629 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up