美文网首页
数据库操作初体验

数据库操作初体验

作者: 五长同学 | 来源:发表于2018-03-29 14:45 被阅读0次

    SELECT * FROM planet_dev.plant_notice;

    insert into plant_notice(content,image,class_id) value('哈哈哈','hehehehe',1);

    update plant_notice set content='huhuhu' where content ='哈哈哈';

    update plant_notice set deleted=1='huhuhu' where content ='哈哈哈';

    delete from plant_notice where content='huhuhu'

    数据库安全操作set SQL_SAFE_UPDATES = 0;

    相关文章

      网友评论

          本文标题:数据库操作初体验

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