Modify a Column's Type in sqlite3

前端 未结 4 1702
日久生厌
日久生厌 2020-11-29 01:13

I\'m pretty new to SQLite 3 and just now I had to add a column to an existing table I had. I went about doing that by doing: ALTER TABLE thetable ADD COLUMN category;<

4条回答
  •  情深已故
    2020-11-29 02:04

    SQLite doesn't support removing or modifying columns, apparently. But do remember that column data types aren't rigid in SQLite, either.

    See also:

    • SQLite Modify Column

提交回复
热议问题