Ich möchte per Skript eine neue Funktion in meiner Datenbank anlegen. Der Skriptcode ist unten: IF Exists(Select * From sys.sysobjects A Where A.name =N'fn_myfunc' and xtype=N'FN') return; CREATE FUNCTION fn_myfunc () returns varchar(10) AS Begin ... End Wenn ich das obige Skript ausführe, gibt SQL...