Copy a field column of one table to another

No Comments

UPDATE table1
INNER
JOIN table2
ON table2.something = table1.something
SET table2.field2 = table1.user

More

What is NoSQL? is it substitution of Rational Dabases?

No Comments

In the end of this article I want you watch this interesting presentation by Brian Aker :)

How To Backup & Restore MySQL database using mysqldump

No Comments

mysqldump tool provide facility to backup MySQL databases. It creates *.sql file with DROP, CREATE and INSERT statements. There are number of keys, which can be used to create backup of database(s).

Details of all keys can be checked using command
bash: # mysqldump --help

Basic command for taking backup

bash: # mysqldump -u root -p[root_password] [database_name] > filename.sql

And for restoring

bash: # mysql -u root -p[root_password] [database_name] < filename.sql

More