摘要: Truncate、delete、drop区别 一、Truncate使用 truncate user_table; 清空表的数据,但不破坏表结构 二、delete使用 delete from user_table where id = 1; 删除指定数据,要跟where条件(不过业务中大多是逻辑删除, 阅读全文
posted @ 2023-03-04 17:58 梁上尘 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 判断列表中元素是否一致 def list_equal(list): return list[1:] == list[:-1] 如上:只需要运用切片,倒序并进行对比就好,无需for循环一一比较 阅读全文
posted @ 2023-03-04 15:49 梁上尘 阅读(18) 评论(0) 推荐(0) 编辑