当字段 UID 值为 NULL 时,如何将序列值分配给 sqlite 字段
我如何将序列值分配给现有 sqlite 表中为 NULL 的字段“UID”,例如
table: FOO
name UID
A 1
B 2
C 100
D NULL
E NULL
F NULL
我想要的是
table: FOO
name UID
A 1
B 2
C 100
D 101
E 102
F 103
有人可以帮忙吗? 我想根据自己的原因寻找使用自动增量的替代方案...
谢谢!
How I can assign a sequence value to a field "UID" which is NUll in existing sqlite table, for example
table: FOO
name UID
A 1
B 2
C 100
D NULL
E NULL
F NULL
what I want is
table: FOO
name UID
A 1
B 2
C 100
D 101
E 102
F 103
Can some body help?
I want to seek an alternative for using autoincrement on my own reason...
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注册一个函数,返回调用次数,然后执行
Register a function that returns the number of times it's called, and then do