博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql insert 返回值
阅读量:5050 次
发布时间:2019-06-12

本文共 919 字,大约阅读时间需要 3 分钟。

结论:当表的主键字段不是自增的时候,添加一条数据返回的最后插入字段的id的值就是0,但并不表示其插入错误或没有插入成功

上代码:

mysql> insert into hello(id, age) value (12,8);Query OK, 1 row affected (0.00 sec)mysql> select last_insert_id();+------------------+| last_insert_id() |+------------------+|                0 |+------------------+1 row in set (0.00 sec)mysql> desc hello;+-------+---------+------+-----+---------+-------+| Field | Type    | Null | Key | Default | Extra |+-------+---------+------+-----+---------+-------+| id    | int(11) | NO   | PRI | NULL    |       || age   | int(11) | YES  |     | NULL    |       |+-------+---------+------+-----+---------+-------+2 rows in set (0.01 sec)mysql> select * from hello;+----+------+| id | age  |+----+------+|  1 | NULL ||  2 | NULL ||  5 |    0 ||  6 | NULL ||  9 |    1 || 10 |    2 || 11 |    8 || 12 |    8 |+----+------+8 rows in set (0.00 sec)

 

转载于:https://www.cnblogs.com/iLoveMyD/archive/2012/11/14/2769649.html

你可能感兴趣的文章
CentOS笔记-用户和用户组管理
查看>>
Mongodb 基本命令
查看>>
Qt中QTableView中加入Check列实现
查看>>
“富豪相亲大会”究竟迷失了什么?
查看>>
控制文件的备份与恢复
查看>>
返回代码hdu 2054 A==B?
查看>>
Flink独立集群1
查看>>
iOS 8 地图
查看>>
20165235 第八周课下补做
查看>>
[leetcode] 1. Two Sum
查看>>
iOS 日常工作之常用宏定义大全
查看>>
PHP的SQL注入技术实现以及预防措施
查看>>
MVC Razor
查看>>
软件目录结构规范
查看>>
Windbg调试Sql Server 进程
查看>>
linux调度器系列
查看>>
mysqladmin
查看>>
解决 No Entity Framework provider found for the ADO.NET provider
查看>>
SVN服务器搭建和使用(三)(转载)
查看>>
Android 自定义View (三) 圆环交替 等待效果
查看>>