美文网首页
删除表中数据

删除表中数据

作者: 笔墨流年乱浮生 | 来源:发表于2018-08-17 01:22 被阅读0次

    删除数据:

    delete form table_name [where clause]
    

    结果:


    同时删除多张表的数据:

    delete table_name1 , table_name2 , ... , table_nameN
    from
    table_name1 , table_name2 , ... , table_nameN [where clause]
    

    相关文章

      网友评论

          本文标题:删除表中数据

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