Tagged Questions
2
votes
3answers
82 views
SQL LIMIT to get latest records
I am writing a script which will list 25 items of all 12 categories. Database structure is like:
tbl_items
---------------------------------------------
item_id | item_name | item_value | timestamp
...
2
votes
1answer
268 views
Select latest record with some more conditions
ID Level Effective Date ExpirationDate
000012-12 2 12/01/2005 NULL
000012-12 1 12/01/2005 NULL
000012-12 2 12/01/2005 01/01/2009
000012-A12 2 10/01/1994 11/30/2005
...
2
votes
6answers
170 views
sql sequences count
i have table a follows
userid answer
1 true
1 true
1 false
1 true
1 true
1 true
2 true
1 true
i want to get the ...
2
votes
2answers
948 views
MySQL SQL getting most recent records in a table?
I have an sql statement as below attempting to retrieve the most recent entries in a table. So I have two questions:
is it better to order by id or by date?
how do I rewrite this sql statement to ...
1
vote
4answers
818 views
Efficient latest record query Postgresql
Alright I need to do a big query, but I only want the latest records.
For a single entry I would probably do something like
SELECT * FROM table WHERE id = ? ORDER BY date DESC LIMIT 1;
But I need ...
0
votes
3answers
35 views
How to use SQL to output latest info with multiple col
I have a "weather" table below with 3 cols:
City Temperature Date
New York 22 C 10/10/2005
Seattle 21 C 10/10/2005
New York 18 C 10/09/2005
Seattle 20 C 10/09/2005
Washington 17 ...
0
votes
2answers
107 views
Latest Actions in PHP?
If you go to http://www.foxnews.com, and scroll down a little you would see the box "LATEST NEWS".
Now I want to do something like that, but with modification.
I have 3 queries, that get out ...
0
votes
1answer
82 views
PHP PunBB How to have the most recent posts of the forum on the home page?
I want to display the most recent posts in a punbb forum on the website home page, does anyone have the php code for this?