Home page
Services
Blog
Contact us
About us
RSS / FEED
Social networks
/blog/tag/mysql,sync,unique.html
Search
Search
Categories
faq (4)
tips (2)
Random Entry
Syncing only unique content with MySQL
IPv6 tunnel + rDNS on Amazon EC2 running Ubuntu
Recursively change strings with find and sed
Most Recent Entries
Syncing only unique content with MySQL
Validating XHTML with RDFa and Facebook like button
IPv6 tunnel + rDNS on Amazon EC2 running Ubuntu
Most Recent Comments
Stanimir Stoyanov
07/12/13
the load command can be used with any OS running MySQL. If...
grails database guy
07/12/13
Is this load command for Unix/Linux or can also be used on...
Creative Commons
This work is licensed under a
Creative Commons Attribution 3.0 License
.
Home
Blog
mysql,sync,unique
Current page
mysql,sync,unique
Syncing only unique content with MySQL
05/20/13
An fast and easy way to get just the unique lines in one file, which are not in another one.
$ cat file1
UPDATE `table_name` SET `column1`='1', `column2`='2' where `id`='1';
UPDATE `table_name` SET `column1`='1', `column2`='3' wh...