Well, your question is not well-framed. How you can use Scrapy is up to you.
Here's what Scrapy does basically:
1) Websites have a tree structure a->b, a->c, a->d, b->e, c->f .....etc
2) Scrapy helps you crawl through the tree recursively
3) While crawling, Scrapy lets you 'mine' for information. For that you need to learn XPaths to locate and parse the DOM values in the page
http://www.w3schools.com/xpath/
4) Parse the values and store it in your database.
Let us know exactly what you are crawling for. If you're just crawling and saving the web pages, you might as well go for softwares like [HTTrack] http://www.httrack.com