There are static sites all over the web that have no SQL or PHP or anything like that (http://shows-app.com/, http://www.usefabric.com/). Static site generators like jekyll could use something like this. Splash pages for startups and apps could also use this.
Imagine taking what a user sees in their browser when they view-source and giving them that.
Let's take a blog, for instance. What you effectively do is pre-render all your blog posts into ready-to-be-served HTML. When you visit a Wordpress site, PHP takes over and custom builds the response for the request. EVERY request that isn't being cached effectively.
Now there are tradeoffs. You won't be able to have some user/visitor specific data like user profile. You have to get crafty with what else you take for granted that is exposed through server-side languages and database persistence. You have to push functionality out to the front-end if you wish to have a rich content site.
What are the benefits? Substantially less server load as this is just serving static assets (HTML, JS, CSS, images). Lessened security concerns ( absence of SQL injection, Cross-site scripting attack vector from untrusted user content is removed). Highly cacheable content. Less 'moving parts' to worry about which could break in production.
Your site can still be managed by PHP, Ruby, Python, etc and have a database backing it, but it is not accessible from the Internet by visitors. A static site solves a defined set of problems, but it is definitely not a hammer.
I've found it great for quickly showing clients a semi-functional mockup or prototype. I just replace my database connection with a big lump of json. Great if most of your application logic is in javascript.