-2

I obtained the PwnedPassword list of the 100K most common passwords from https://www.ncsc.gov.uk/static-assets/documents/PwnedPasswordsTop100k.txt

How can I insert this list into a MySQL table?

Gdev
  • 167
  • 1
  • 11

1 Answers1

-2

Use the LOAD DATA LOCAL INFILE

https://dev.mysql.com/doc/refman/8.0/en/loading-tables.html

Spectre
  • 1
  • 1
  • 1
    It could have been nice if you could have provided an example instead of the direct link. Might have been more useful. – Sajan Nov 01 '20 at 13:09