What is the best data type to store millions in mySQL? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the best data type to store millions in mySQL?

Please, can anyone recommend me what is the best data type that will help me in SQL to store millions and hava a good precision? Also how to handle this data in python.

5th Dec 2020, 2:18 AM
Rosana Rodríguez Milanés
Rosana Rodríguez Milanés - avatar
3 Answers
+ 6
Rosana Rodríguez Milanés If you wanna store millions of value then mediumint or BIGINT is sufficient for that!
5th Dec 2020, 7:04 AM
Piyush
Piyush - avatar
+ 4
You need to worry about which data type you are storing it can easily handle millions of row and columns. Even if you have millions of data in your database it will take some millisecond to find specific value from the database or you can say in other words filtering the database. It all depends upon the SQL, not on python. Python is just like a tool which helps you to work with data in MySQL.
5th Dec 2020, 3:57 AM
Maninder $ingh
Maninder $ingh - avatar
+ 3
For integer types you can use 'int' or 'bigint' and for floating point values you can use either 'decimal' or 'float'. And million is not a very big number so any of these could be used.
5th Dec 2020, 4:06 AM
Avinesh
Avinesh - avatar