不要怂,就是干,撸起袖子干!

Commit afb49253 by Eamonn McHugh-Roohr

Typo fix in Raw Queries

Changed updat to update
1 parent eaf197fa
Showing with 1 additions and 1 deletions
......@@ -316,7 +316,7 @@ To recap, the elements of the order / group array can be the following
### Raw queries
Sometimes you might be expecting a massive dataset that you just want to display, without manipulation. For each row you select, Sequelize creates an instance with functions for updat, delete, get associations etc. If you have thousands of rows, this might take some time. If you only need the raw data and don't want to update anything, you can do like this to get the raw data.
Sometimes you might be expecting a massive dataset that you just want to display, without manipulation. For each row you select, Sequelize creates an instance with functions for update, delete, get associations etc. If you have thousands of rows, this might take some time. If you only need the raw data and don't want to update anything, you can do like this to get the raw data.
```js
// Are you expecting a masssive dataset from the DB,
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!