Blogvaria

This page is brought to you by Blogvaria (http://blog.evaria.com).

To obtain more information, ask questions and interact please visit our website.

Back to Blogvaria landing page
Feedback
Subscribe
   
Blogvaria

 

The personal pages

Posts filed in July, 2007

MySQL; Update all rows in a second

I’ve just converted an Excel sheet to MySQL to import numerous data for a new client project. Afterwards when I verified the data all the “Room” numbers was written with an extra .0 at the end besides a few other smaller issues.

So how do you clean up a few hundred rows quickly? You simply write a tiny PHP script to do the job for you:

$query = "SELECT * FROM Table";
$result = mysql_query($query) or die("Query failed : " . mysql_error());
while($row = mysql_fetch_assoc($result))
{
    # Assuming you have an auto_increment Field named ID
    $ID = $row['ID'];
    # Replace the unwanted text with new text
    $updateRow = str_replace("before","after",$row['FieldName']);
    # Update your table with the new value
    $UpdateRecords = "UPDATE Table SET FieldName='$updateRow' WHERE ID='$ID'";
    $Update = mysql_query($UpdateRecords) or die("Query failed: " . mysql_error());
}

Could prove useful to you as well someday – it sure did for me :)

Filed under Programming | No Comments

Working in high places

Think you have a high-risk job? Think again. These guys really deserve whatever extra they get by the hour…

Full story | Filed under Photos & Images | No Comments

Amazing coordinated dance

South Koreans pull off a crazy but amazingly coordinated dance.

I believe Samsung paid for the training…

Filed under Humour | No Comments

Best from Michael Jackson

Here’s a little cavalcade of the best moves done by the king of pop throughout the years.

May not be the biggest fan myself, but the guy can/could move…

Filed under Music & Hi-Fi | No Comments

Fun in prison

1,500 plus CPDRC inmates of the Cebu Provincial Detention and Rehabilitation Center, Cebu, Philippines at practice! This is not the final routine, and definitely not a punishment! just a thrill(er).

Made me laugh…

Filed under Humour | No Comments


Page 1 of 812345678»

Quick links - Blogvaria time links [ sitemap ]

2010 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec

2009 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec

2008 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec

2007 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec

2006 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec

Akismet has protected Blogvaria from 108,555 spam comments. Design by Evaria.com. Powered by WordPress.
Our beloved and trusted server has rendered 3.847 pages so far today, an amazing 4.381 pages yesterday
and even more astonishingly 185.528 pages since 29 Jan 2010 alone without dropping a byte nor a pixel.

Close
E-mail It