alter table student_info modify id int(3); -- 先删除自增约束 alter table student_info drop primary key; -- 再删除主键约束 alter table student_info drop id; -- 再删除该字 ...
分类:
其他好文 时间:
2021-06-22 17:54:17
阅读次数:
0
不定时总结ES6里面的怪姿势! 1·变量 let url = _rural, method = `post`, loading = true, data = { page,page_size, rd_session}, params = { url, method, loading, data}; ...
分类:
其他好文 时间:
2021-06-21 21:10:59
阅读次数:
0
1 新增 user = User(mobile='15612345678', name='itcast') db.session.add(user) db.session.commit() profile = Profile(id=user.id) db.session.add(profile) d ...
分类:
数据库 时间:
2021-06-20 18:48:46
阅读次数:
0
Servlet汇总 因为看公司代码,有个cookie+jwt.Token登录验证接口,于是回顾下servlet、cookie、session、前后端分离restful、jwt.token相关内容。虽然现在流行的是网关封装各个接口,但是基础还是比较重要,需要重新复习。 Servlet--基础理论、实战 ...
分类:
其他好文 时间:
2021-06-20 17:37:51
阅读次数:
0
1,创建索引 CREATE INDEX indexName ON mytable(username(length)); 2,修改索引表结构 ALTER mytable ADD INDEX [indexName] ON (username(length)) 3,删除索引的语法 DROP INDEX [ ...
分类:
数据库 时间:
2021-06-19 19:31:12
阅读次数:
0
访问控制模型 在项目中需要加入访问空值,于是对访问控制模型多了一些调研,介绍一些常见的访问控制模型. 访问控制模型三要素 主体(Subject) 指主动对其它实体施加动作的实体 客体 (Object) 是被动接受其他实体访问的实体 控制策略 (Policy) 为主体对客体的操作行为和约束条件 自主访 ...
分类:
系统相关 时间:
2021-06-19 19:10:56
阅读次数:
0
void twb_xd_std::set_attr( std::vector<NXOpen::NXObject *> objects , string attr_category, string attr_title , string attr_value ) { NXOpen::Session * ...
分类:
其他好文 时间:
2021-06-18 19:37:36
阅读次数:
0
1、 进入数据 mysql -u root -p ‘原来的密码’ //进入数据库中 2、 切换数据库 use mysql; 3、使用以下命令开启root用户远程访问权限: CREATE USER 'root'@'%' IDENTIFIED BY '你的密码'; GRANT ALL ON *.* TO ...
分类:
数据库 时间:
2021-06-15 18:39:53
阅读次数:
0
mysql-索引 21.6.12【索引的分类】 单列索引:索引加在一个列上 普通索引(normal): alter table user add index `name`(`name`) 唯一索引(unique): alter table user add unique index `code`(` ...
分类:
数据库 时间:
2021-06-13 10:24:21
阅读次数:
0
有待总结。 Binary Search: 633, Sum of Square Numbers 475, Heaters 744, Find Smallest Letter Greater than target(LC submissions from original session) 427?? ...
分类:
其他好文 时间:
2021-06-13 09:48:38
阅读次数:
0