gpt4 book ai didi

mysql - 如何使用 Microsoft Visual Studio 2010 检查列中是否存在值

转载 作者:行者123 更新时间:2023-11-29 17:56:11 25 4
gpt4 key购买 nike

我一直在尝试为使用 Microsoft Visual Studio 2010 的系统执行此操作。我有一个表 morAtt

列 = 日期、名称、位置、时间输入、超时

如果(列中的值存在)则

sql = UPDATE morAtt 设置 TimeOut = TimeString

其他

sql = INSERT INTO morAtt(日期,名称,位置,时间输入)值(DateString,txtName.Text,txtPost.Text,TimeString)

如果结束

因此,我需要有关如何检查列中是否存在值的帮助,如果名称存在,则更新超时,否则名称不存在,将人员的新行插入到表中。

最佳答案

2 个选项:

UPDATE morAtt a
SET a.TimeOut = TimeString
WHERE EXISTS (
SELECT 1
FROM morAtt b
WHERE (b.Name= a.Name)
)

if morAtt .name is not null then update else insert

关于mysql - 如何使用 Microsoft Visual Studio 2010 检查列中是否存在值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48801682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com