Comments - Can I insert plenty of values into a table without a lot of redundant character in python?
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.
Use the fully featured python string functions like
"INSERT INTO table VALUES (" + ",".join("?" * 100) + ")"100 columns however makes me question if you've normalized your data correctly.