What is the sqlite default column type? -


in 1 of our company's scripts found sqlite create table script 1 of columns data type definition missing. default value of column type @ time of table creation?

create table x( y,  z int );  

in above simplified example y column under question.

when try check column with

pragma table_info(x) 

the information y column missing.

there no types of column type affinity. in case it's omitted, type affinity numeric. can read on here: https://www.sqlite.org/datatype3.html


Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -