访问数据库中的备用[重复]
Posted
技术标签:
【中文标题】访问数据库中的备用[重复]【英文标题】:Alternate in access database [duplicate] 【发布时间】:2015-08-18 09:01:29 【问题描述】:我想在 Access 2007 中插入新行之前检查一行是否存在。 我在 SQL Server 中有以下工作查询,但无法将其转换为 Access。
update category set name='hell' where categoryid=287
if @@rowcount=0
begin
insert into category(categoryid,name,path,parentcategoryid,creationdate) values (287,'a','a',12,'')
end
【问题讨论】:
我想在 access 2007 中插入新行之前检查一行是否存在。任何帮助将不胜感激 问题出在哪里? 【参考方案1】:试试这个
update category set name='hell' where categoryid=287;
if not exists(select * from Category where categoryid=287)
insert into category(categoryid,name,path,parentcategoryid,creationdate)
values (287,'a','a',12,'');
【讨论】:
以上是关于访问数据库中的备用[重复]的主要内容,如果未能解决你的问题,请参考以下文章
MySQL 新建数据库,创建用户授权并设置用户远程访问,收藏备用~~~