随笔分类 - 数据库
数据库相关文章
摘要:1. git add . 2. git commit -m "some word"3. git push -u origin master
阅读全文
摘要:mysql之explain说明使用详解
阅读全文
摘要:更新本地代码 git pull 更新某分支代码 查看全部分支
阅读全文
摘要:SELECT 查询字段 AS 取别名 搜索的字段,并给字段取名,利于显示观察 FROM 表a a ...
阅读全文
摘要:增:insert into 表名(id,name) values(0,'尹当') 删:delete from [表名] where ([条件]); 改:update [表名] set [修改内容如name = 'Mary' 列名='新的值,非数字加单引号'] where [条件如:id=3]; 查:
阅读全文