莫问前路无知己
莫问前路无知己
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
莫问前路无知己的博客
全部文章
(共9篇)
题解 | #创建添加/删除索引 #
alter table examination_info add index idx_duration(duration); alter table examination_info add unique index uniq_idx_exam_id(exam_id); alte...
2023-04-11
0
0
题解 | #修改表列- alter#
alter table user_info add column school varchar(15) after level; alter table user_info change column job profession varchar(10); alter t...
2023-04-11
0
0
题解 | #创建一张新表的学问#
CREATE TABLE IF NOT EXISTS user_info_vip ( id int (11) primary key auto_increment comment '自增ID', uid int (11) not null unique co...
2023-04-10
0
0
题解 | 删除- 删除的排序 和 limit#
delete from exam_record where (start_time is not null and submit_time is null) or timestampdiff(minute, start_time, submit_time) < 5 order by start...
2023-04-10
0
397
题解 | #删除- 时间函数TIMESTAMPDIFF#
delete from exam_record where timestampdiff(minute, start_time, submit_time) < 5 and score < 60; TIMESTAMPDIFF(unit[时间单位],begin,end) :可以计算两个日期相...
2023-04-10
0
0
题解 | 插入- relace into #
replace into examination_info(exam_id, tag, difficulty, duration, release_time) values(9003, 'SQL', 'hard', '90', '2021-01-01 00:00:00'); 无论存不存在该条记录都需...
2023-04-10
0
0
题解 | #用递归函数和栈逆序一个栈#
import java.util.*; import java.io.*; public class Main{ //获取&移除栈底最后一个元素,且将其他元素原封不动压入栈 public static int getAndRemoveLast(Stack<Integer>...
Java
2022-03-30
0
365
题解 | #由两个栈组成的队列#
由两个栈组成的队列 一个栈专门进栈push_stack,一个栈专门出栈pop_stack 形成队列先进先出原则 如果要出队,需要将push_stack所有元素压入 pop_stack 再弹出 如果 需要将push_stack的元素压入pop_stack中,需要保证pop_stack为空 例如 ...
Java
2022-03-16
0
444
题解 | #设计getMin功能的栈#
设计getMin功能的栈 创建两个栈 一个栈stack_data存所有数据,一个栈stack_min【栈顶最小】存实时最小值 进栈push: stack_min将每个数据与栈顶数据比较(空栈直接进来) 小于栈顶则进来 出栈pop: stack_data出栈数据和 stack_min栈顶比较(只...
Java
2022-03-14
0
412