[摘要]前几天遇到一个mysql游标不到数据问题,这个问题困扰了我两天,现在终于解决了,下面小编就来为大家分享一下。这是建表语句,插入两行数据 drop table如果存在testinfo;创建表testi...
前几天遇到一个mysql游标不到数据问题,这个问题困扰了我两天,现在终于解决了,下面小编就来为大家分享一下。
这是建表语句,插入两行数据
drop table如果存在testinfo;
创建表testinfo
(
name varchar(10)not null,
年龄int
);
truncate table testinfo;
插入testinfo()值('你',15);
插入testinfo()值('me',20);
查询的表数据
mysql> select name,age from testinfo;
+ ------ + ------ +
关键词:mysql游标不到数据问题以及处理方案