摘要:
1. 删除重复数据只保留创建时间最小的记录 WITH CTE AS ( SELECT Id, -- 主键或唯一标识列 Subject, CreateTime, RN = ROW_NUMBER() OVER ( PARTITION BY Subject ORDER BY CreateTime ASC 阅读全文
摘要:
1. 调整一下我的表结构,然后然后做一个one to manny 的查询 1 public class Order 2 { 3 public Guid OrderId { get; set; } 4 public string OrderCode { get; set; } 5 public str 阅读全文
摘要:
1.给自己的项目取一个名字,使用 vs2019 , .net core 3.0 引用 dapper 2.然后构建一个类 public class Customer { public int CustomerID { get; set; } public string CustomerName { g 阅读全文
摘要:
jQuery的一些东东比较容易忘,所以在这里整理一下... ... 1. each (1) $(selector).each(function(index,element)) index - 选择器的 index 位置 element - 当前的元素(也可使用 "this" 选择器) $("butt 阅读全文