sql
hejisan
这个作者很懒,什么都没留下…
展开
-
sql之with as 公用表表达式
sql 中的with as 具有强大的功能,特别是在有递归需要的情况下,一般来说结合union all一起用。示例如下:with w_Users(UserId) as ( select UserId from Users where UserId={0}原创 2016-07-05 23:14:17 · 5843 阅读 · 0 评论 -
mysql 语句收集
create table Goods1(ID integer unsigned not null AUTO_INCREMENT,CustomerID int not null,primary key (ID)) auto_increment=1;原创 2016-10-11 12:45:14 · 338 阅读 · 0 评论 -
SQL 条件表达式
即在SQL语句中加入if-else的逻辑。在Oracle中有两种用法:CASE 表达式:SQL99的语法,比较繁琐DECODE 函数:Oracle自己的语法,比较简洁Demo:公司开始涨薪水了,President涨1000,Manager涨800,其他员工涨500。方式一:Case表达式:方式二:decode函数原创 2016-10-14 10:39:46 · 3351 阅读 · 0 评论 -
sql server 显示时间转换隐式时间转换
SELECT CONVERT(datetime,'2016-11-26 23:59:59.99') --2016-11-26 23:59:59.990SELECT CONVERT(datetime,'2016-11-26 23:59:59.990') --2016-11-26 23:59:59.990SELECT CONVERT(datetime,'2016-11-26 23:59:原创 2016-11-28 12:37:19 · 454 阅读 · 1 评论 -
SqlHelper.ExecuteScalar返回插入的记录的主键
INSERT INTO T_LIMS_Inspection({0}) output INSERTED.ID VALUES ({1});原创 2018-01-25 20:14:28 · 1917 阅读 · 0 评论 -
Entity Framework Sprocs with Multiple Result Sets
Entity Framework Sprocs with Multiple Result Sets Updated: October 23, 2016Sometimes when using stored procedures you will need to return more than one result set. This scenario is commonly used to re...转载 2018-05-15 09:58:31 · 214 阅读 · 0 评论