+ 9
How to implement sql commands in Sequelize & node js
Hey Everybody, I am new in Javascript and i have a project that implement sequelize with node.js Sequelize helps me to manage my sql database, but i have a problem. How to implement all of sql command listed in this course on Sequelize ? Big Thanks.
3 Answers
0
Check the sequelize documentation, it's fairly extensive
+ 6
Firstly you need to create model for each table
Then execute commands using model names
+ 2
NodeJS has packages to interact with most sql databases. Providing that you know the syntax, they will be pretty easy to use