Forum: MySQL 29 Days Ago |
| Replies: 4 Views: 430 No, use phpMyAdmin to export your database to an .sql file. It is a text file containing all queries to recreate your database. |
Forum: MySQL 33 Days Ago |
| Replies: 2 Views: 387 Something like this:
select * from product where id not in (select product_id from discount) |
Forum: MySQL Oct 30th, 2009 |
| Replies: 1 Views: 412 $strSQL = "SELECT DISTINCT area FROM hospital where area like '%$strSearchVal' "; |
Forum: MySQL Oct 26th, 2009 |
| Replies: 1 Views: 378 Check out this first: http://dev.mysql.com/doc/refman/5.1/en/
It contains everything you need to know to get started. |
Forum: MySQL Oct 13th, 2009 |
| Replies: 2 Views: 404 This will help:
http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html |
Forum: MySQL Aug 26th, 2009 |
| Replies: 2 Views: 443 http://dev.mysql.com/doc/refman/5.1/en/server-logs.html |
Forum: MySQL Aug 21st, 2008 |
| Replies: 2 Views: 1,895 It's all here: http://nl2.php.net/mysql_fetch_assoc
$sql = "SELECT DISTINCT year(date) AS 'year' FROM news ";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
echo... |