随笔分类 -  sql

摘要:区分几种sql的删除语句: drop:删除表格结构 truncate:清空表格数据 delete:删除部份表格数据,一般需要跟where + 条件 使用例子: drop table student truncate table teacher delete * from student where 阅读全文
posted @ 2018-11-20 16:57 kellyPan 阅读(154) 评论(0) 推荐(0)
摘要:根据自己的需求:边学习,边使用。 这个语句是使用sql以来写的最长的一个,刚好自己get到几个关键字的使用: SELECT question.id,content,template_id,stage_id FROM question LEFT JOIN common_template ON ques 阅读全文
posted @ 2018-07-26 21:44 kellyPan 阅读(120) 评论(0) 推荐(0)
摘要:在win10安装MySQL步骤如下: 1.打开官网:https://www.mysql.com/ 2.downloads->community->mysql community server 3.选择 Windows(x86,32 & 64-bit),mysql install msi,点击down 阅读全文
posted @ 2018-03-16 10:14 kellyPan 阅读(201) 评论(0) 推荐(0)