我在尝试着
- 如果表不存在则创建一个新表
- 如果是这样,并且其中没有数据,请插入一些
这是我到目前为止所拥有的:
--See if AuditActivities exists
IF OBJECT_ID('Audit') is not null
--here is where I need to see if either rows are null, if so, enter data
ELSE
CREATE TABLE [dbo].[Audit]
(
AuditSys int,
Description nvarchar(50)
);