什么是动态SQL? 动态SQL就是指根据不同的条件生成不同的SQL语句。 动态SQL元素和JSTL或基于类似xml的文本处理器相似。 搭建环境 创建表: create table `blog`(
`id` varchar(50) not null comment'博客id',
`title` varchar(100) not null comment'博客标题',
`author` varchar(30) not null comment'博客作者',
`create_time` datetim