Thread Zufällige SQL-Abfrage (2 answers)
Opened by Gast at 2004-07-19 13:48

renee
 2004-07-19 14:08
#10162 #10162
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Hi,

Das hat nichts mit PHP zu tun, sondern mit SQL. Es gibt kein ORDER BY RAND.
Das müsstest Du so umgehen: (ungetestet)
Code: (dl )
1
2
3
4
5
6
SELECT RAND( (DATEPART(mm, GETDATE()) * 100000 )
+ (DATEPART(ss, GETDATE()) * 1000 )
+ DATEPART(ms, GETDATE()) ) As RandId,
id, pic1, pic1alt
FROM v2_content
ORDER BY RandId DESC LIMIT 1;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Zufällige SQL-Abfrage