02 2023 档案
摘要:存储过程可以创建或访问临时表,而函数不可以;同时函数不可以修改表中的数据,或调用产生副作用的函数 1.标量函数 返回基类型。 --create function 标量函数名 --( --入参 入参类型 --) --return 出参类型 --as --Begin -- 语句处理 --end --案例
阅读全文
摘要:<!--Horizontal水平竖直排放元素默认Vertical竖直排放 加属性Orientation--> <StackPanel Orientation="Horizontal"> <Button Width="100" Height="40">StackPanel</Button> <Butt
阅读全文
摘要:1.WebApiConfig配置API路由 using System; using System.Collections.Generic; using System.Linq; using System.Web.Http; namespace WebAPIDemo1 { public static
阅读全文