Python Forum
Which is Faster, List or SQL - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Which is Faster, List or SQL (/thread-2441.html)

Pages: 1 2


RE: Which is Faster, List or SQL - wavic - Mar-16-2017

You can cut the database to pieces by the top-level domain name. So com, edu, gov, net, org, etc. goes to different tables.


RE: Which is Faster, List or SQL - Larz60+ - Mar-17-2017

nilamo wrote:

Quote:This sounds a lot like the sort of problem a database is designed to solve.

and I wrote (early in this thread)


Quote:A database table has advantages if the data has to be modified, because
the data that you originally load remains stationary until modified, added to,
or deleted through SQL.

Perhaps this is where you should be headed.