«Copy as SQL INSERT» add quotes for column of type integer. Eg. : CREATE TABLE `croc` ( `id` int unsigned NOT NULL AUTO_INCREMENT ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; INSERT INTO croc (id) VALUES ...
from sqlalchemy import create_engine, MetaData, Table, Integer, Date, Column import sqlalchemy.sql as sql md = MetaData() table = Table("data", md) table.append ...
Results that may be inaccessible to you are currently showing.
Hide inaccessible results