SELECT * FROM table_name ORDER BY RAND();
Found at http://www.mysql.com/doc/M/a/Mathematical_functions.html
use:
SELECT * FROM table_name ORDER BY RAND() limit 1;
if you only want one result not all of them.
- 23 Users Found This Useful
SELECT * FROM table_name ORDER BY RAND();
Found at http://www.mysql.com/doc/M/a/Mathematical_functions.html
use:
SELECT * FROM table_name ORDER BY RAND() limit 1;
if you only want one result not all of them.
Useful Tutorials:Examples on using MySQL commands:...
I think you got this message from PHP.You get this message when you're trying to access $result...
Use this sql command "DROP TABLE yourtablename"
For a simple join:SELECT a.*, b.*FROM tblAlpha a, tblBeta bWHERE (a.keyfield = b.foreignkey);It's...
The answer to this is two-fold.Yes. MySQL _DOES_ allow the creation of foreign key constraints...