-3
我需要檢查@SupplierCategory
和@SupplierCode
條件使用,如果在SQL Server 2008的條件如何寫,如果在SQL
如
if (@SupplierCategory != null && @SupplierCode != null)
begin
end
else
begin
end
如何做到這一點不等於空...謝謝
我需要檢查@SupplierCategory
和@SupplierCode
條件使用,如果在SQL Server 2008的條件如何寫,如果在SQL
如
if (@SupplierCategory != null && @SupplierCode != null)
begin
end
else
begin
end
如何做到這一點不等於空...謝謝
if (@SupplierCategory is not null AND @SupplierCode is not null)
begin
end
else
begin
end
標記爲關閉爲錯字 – arserbin3