03 2021 档案

摘要:本地分支会滚到指定版本 git reset --hard <commit ID号> 推送到远程分支 git push -f origin master 阅读全文
posted @ 2021-03-30 16:14 水木青楓 阅读(289) 评论(0) 推荐(1)
摘要:方法: 先增加字段,然后再移动字段。 alter table tbl_1 add columns(col_c string comment'ccc') ; alter table tbl_1 change col_c col_c string comment'cccc' after col_b; 具 阅读全文
posted @ 2021-03-25 16:09 水木青楓 阅读(6898) 评论(0) 推荐(0)