
sql
就1搬砖的
有志者事竟成;
志不立,天下无可成之事;
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mysql创建索引的方式
Mysql创建索引的方式原创 2023-03-16 12:24:23 · 306 阅读 · 0 评论 -
Postgres数据库增加表字段、注解语句、修改字段长度、修改字段名称
alter table xxx add column created_by varchar(42) DEFAULT nullalter table xxx add column created_date TIMESTAMP DEFAULT nullalter table xxx add column updated_by varchar(42) DEFAULT nullalter table xxx add column updated_date TIMESTAMP DEFAULT nullco.原创 2021-05-17 18:23:33 · 7910 阅读 · 0 评论 -
Mybatis中批量删除传数组xml中该怎么写
接口void delSubscriberByIds(Integer[] ids);xml中<!-- 删除 --> <delete id="delSubscriberByIds" parameterType="Integer[]"> delete from subscriber where uid in <foreach collection=...原创 2020-04-27 14:24:57 · 637 阅读 · 0 评论