摘要:
https://blog.csdn.net/u014520797/article/details/50622561?_t_t_t=0.5195991079460243&utm_medium=distribute.pc_relevant_bbs_down.none-task-blog-baidujs- 阅读全文
摘要:
https://www.cnblogs.com/mienreal/p/4534598.html 阅读全文
摘要:
https://www.cnblogs.com/fan-yuan/archive/2004/01/13/3513873.html 1 聚合根,实体,值对象的区别 从标识的角度 聚合根具有全局的唯一标识,而实体只有在聚合内部有唯一的本地标识,值对象没有唯一标识 从是否只读的角度 聚合根出来唯一标识,其 阅读全文
摘要:
1 主键ID自增,插入数据后返回这条数据的ID值 insert into table () values () select @@identity 2 主键ID 使用GUID 类型值,插入数据后返回这条数据的ID值 insert into tableName() output inserted.id 阅读全文
摘要:
https://blog.csdn.net/weixin_30376083/article/details/99180283 阅读全文
摘要:
jq 的过滤显示隐藏 $("#overflow2 table tr").find("td:eq(1) em").filter(":contains('" + arry_cid + "')").closest("tr").next().hide(); jq 循环 $("#tb2 tr").each(f 阅读全文
摘要:
select * ,ROW_NUMBER() OVER (order by id desc) as RowNumber, COUNT(1) OVER() AS recordCount from() temp 阅读全文
摘要:
DECLARE @Code NVARCHAR(20)='S05' select top 1 name from student where code=@Code 阅读全文
摘要:
https://www.jianshu.com/p/6bce48596a69 阅读全文
摘要:
https://jingyan.baidu.com/article/e4511cf384e7312b845eaffd.html 阅读全文