SQL函数实例: returns 和return
CREATE FUNCTION [dbo].[lfx_Len]( @char VARCHAR(2000)--变量)RETURNS intBEGIN RETURN len(@char+'<LUOFUXIAN>')END