vote up 0 vote down star

I want to use this to get data from row out of mysql database into text files (one entry under another, 50 entries per file):

$ mysql --user=XXX --password=XXX --batch --skip-column-names \
 -e "SELECT userid, displayname FROM Users" stackoverflowdb | \
split -l 50 -a 5 - "result."

but I also don't want to copy duplicate entries to these files. Will this code remove duplicates or do i need to add something to it to don't copy duplicate entries?

flag

61% accept rate
Are you referring to duplicate entries in the Users table? – Doug Hays Aug 28 at 14:12
yes, i don't want duplicate entries from there – Phil Aug 28 at 14:24

2 Answers

vote up 3 vote down check

Modifying the SQL to use the DISTINCT directive

e.g.

 SELECT DISTINCT userid,displayname FROM Users

will ensure that only unique combinations of userid and displayname are selected.

However this will not prevent userids that have identical displaynames.

link|flag
great, thanks. upvoted. just wanted to make sure... text files will be created in directory i cd to? – Phil Aug 28 at 16:03
1  
I think split will create them in the current working directory by default, yes. – cms Aug 28 at 16:21
ok, i ran it this way and it seems to work... awesome! xD – Phil Aug 28 at 16:34
vote up 1 vote down
SELECT DISTINCT userid,displayname FROM Users

.. or outside the database

mysql --user=XXX --password=XXX --batch --skip-column-names \
 -e "SELECT userid, displayname FROM Users" stackoverflowdb | \
sort -u | \
split -l 50 -a 5 - "result."
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.