SQLite-优雅地设置ID

发布于 2024-10-24 07:47:59 字数 422 浏览 2 评论 0原文

我想使用这样的数据库:

表犯错者(主键整数 ID、日期)

表格犯罪(数字 foreign_key_to_wrongdoer,短信犯罪)

我希望我的应用程序(在Python中)注册一个不法行为者(这应该为该条目提供一个唯一的整数)并注册针对他的第一个犯罪行为。我的想法比较笨拙:

插入到不法行为者(...)

id=cur.execute("选择 max(ID)") //这是选择最近的ID

cur.execute("插入到 犯罪('"+id+"'"犯罪+"'")")

即插入一个条目,从DB中选择其唯一键(假设其编号最大),然后用于后续查询。有更好的方法吗?

I want to use a database like:

table wrongdoer (primarykey integer
ID, date)

table crime (numeric
foreign_key_to_wrongdoer, text crime)

I want my application (in python) to register a wrongdoer (which should give the entry a unique integer) and register the first crime against him. My idea is rather clumsy:

insert into wrongdoer(...)

id=cur.execute("select max(ID)")
//this is to select the most recent ID

cur.execute("insert into
crime('"+id+"'"crime+"'")")

That is, insert an entry, select its unique key from DB (assuming its the highest number), and then use it for the subsequent queries. Is there a better way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文