建表
CREATE TABLE public.ellistest (id bigserial NOT NULL,"name" varchar null,primary key (id)
);插入数据 删除含有_线的数据
你会发现表被清空了
delete from ellistest where name like %_%原因 百分号(%)用于表示0、1或多个字符或数字。 下划线通配符…
论文引用 此篇阅读笔记与思考主要针对以下两篇论文:
Climbing towards NLU: On Meaning, Form, and Understanding in the Age of Data
Transformer Feed-Forward Layers Are Key-Value Memories
本文将讨论第一篇论文所引发的思考(第一篇论文的详细解…
第10步---MySQL的日志操作 错误日志 慢日志 1.查看错误日志
-- 查看日志信息
show VARIABLES like log_error%;2.查看binlog 高版本是默认开启的,低的是默认是不开启的 binlog日志文件是与事务相关 -- 查看binlog日志的格式
show variables like binlog_format;-- …