SQLite

作者: 无量儿 | 来源:发表于2021-12-07 14:50 被阅读0次

    1、
    UPDATE table_name
    SET column1 = value1, column2 = value2...., columnN = valueN
    WHERE [condition];

    2、查看表结构
    https://www.cnblogs.com/pugang/p/13985004.html

    select * from sqlite_master where type="table" and name="emperors";

    相关文章

      网友评论

          本文标题:SQLite

          本文链接:https://www.haomeiwen.com/subject/xwpgzhtx.html