Re: [sqlalchemy] Insert statement and DEFAULT keyword

2020-04-14 Thread Nicolas Caniart
2, Mike Bayer a écrit : > > > > On Tue, Apr 14, 2020, at 10:41 AM, Nicolas Caniart wrote: > > Hi ! > > I've been looking into the documentation but could not find it. > What is the proper way to insert a DEFAULT keywork in the tuples of the > VALUES clause in an INSER

[sqlalchemy] Insert statement and DEFAULT keyword

2020-04-14 Thread Nicolas Caniart
Hi ! I've been looking into the documentation but could not find it. What is the proper way to insert a DEFAULT keywork in the tuples of the VALUES clause in an INSERT statement ? As in CREATE TABLE number ( i INTEGER, letters STRING, roman STRING DEFAULT '', ) ; INSERT INTO number