Tagged Questions

2
votes
1answer
54 views

When Does Django Perform the Database Lookup?

From the following code: dvdList = Dvd.objects.filter(title = someDvdTitle)[:10] for dvd in dvdList: result = "Title: "+dvd.title+" @ "+dvd.price+"." When does Django do the lookup? Maybe it's ...
2
votes
5answers
440 views

How do I create a “filter by price” type of query?

I'm using VBScript (ASP Classic) and SQL Server; I'm trying to have a section on the website where you can see a count of products at certain price levels. Something like: $50 - $100 (4) $100 - $500 ...
0
votes
4answers
1k views

Filtering out duplicate values at runtime in a sql database - set based

I have a database issue that i currently cannot wrap my head around with an easy solution. In my db I have a table that stores event values.. 0's and 1's with a timestamp. Issue being that it is ...