I am working on a web application which involves create list of Restaurants in various lists like "Joe's must visit places". Now for each Restaurant and list, I have display on website which calculates
- Calculating popularity of a Restaurant
- Popularity of a list
- Number of lists a Restaurant is present in
Currently I am using MySQL statements in PHP for this but planning to switch to MySQL VIEWS and do a simple select statement in PHP...
my question is, What is Advantage/Disadvantage of using VIEWS over writing sql queries in PHP?