Copy a field column of one table to another
Sep 12
UPDATE table1
INNER
JOIN table2
ON table2.something = table1.something
SET table2.field2 = table1.user
The beginning of knowledge is the discovery of something we do not understand. (Frank. Herbert)
Sep 12
UPDATE table1
INNER
JOIN table2
ON table2.something = table1.something
SET table2.field2 = table1.user
Aug 30
In the end of this article I want you watch this interesting presentation by Brian Aker ![]()
Aug 10
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
bash: # mysqldump -u root -p[root_password] [database_name] > filename.sql
bash: # mysql -u root -p[root_password] [database_name] < filename.sql