摘要:
1.t_student表新增数据 USE keeper; INSERT INTO `t_student` VALUES (null, '张无忌', 25); INSERT INTO `t_student` VALUES (null, '张三丰', 100); INSERT INTO `t_stude 阅读全文
摘要:
0.前言 (1).以下操作基于Mybatis(一):简单入门已存在的数据; (2).mybatisConfig.xml中已开启驼峰命名规则映射; 1.修改Student.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLI 阅读全文
摘要:
1.新建数据库keeper create database keeper 2.创建表t_student USE keeper;DROP TABLE IF EXISTS `t_student`; CREATE TABLE `t_student` ( `student_id` int(11) NOT N 阅读全文