上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 108 下一页
摘要: sql: IF EXISTS (select * from sysobjects where id = object_id(N'[dbo].People') and OBJECTPROPERTY(id, N'IsUserTable') = 1) DROP TABLE People GO CREATE 阅读全文
posted @ 2023-02-06 23:40 ®Geovin Du Dream Park™ 阅读(48) 评论(0) 推荐(0) 编辑
摘要: sql: IF EXISTS (select * from sysobjects where id = object_id(N'[dbo].DepartmentMaster') and OBJECTPROPERTY(id, N'IsUserTable') = 1) DROP TABLE Depart 阅读全文
posted @ 2023-02-06 17:22 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: sql: IF EXISTS (select * from sysobjects where id = object_id(N'[dbo].GeovinDuMap') and OBJECTPROPERTY(id, N'IsUserTable') = 1) DROP TABLE GeovinDuMap 阅读全文
posted @ 2023-02-05 23:07 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: [Keyless] public class PersonOrderCount { public string Name { get; set; } public int Count { get; set; } } public class Person { public int PersonId 阅读全文
posted @ 2023-02-04 19:46 ®Geovin Du Dream Park™ 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 初始化创建表和数据 /// <summary> /// ///Entity /// </summary> public class Product { public Product() { } public int Id { get; set; } public string Name { get; 阅读全文
posted @ 2023-02-04 12:24 ®Geovin Du Dream Park™ 阅读(35) 评论(0) 推荐(0) 编辑
摘要: sql script --dbo.Students --Id int identity --Name --Age byte --CreatedTime date -- ModifiedTime date IF EXISTS (select * from sysobjects where id = o 阅读全文
posted @ 2023-01-29 11:40 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Bubble Sort冒泡排序Selection Sort选择排序Insertion Sort插入排序Quick Sort快速排序Shell Sort 希尔排序Merge Sort 归并排序Heap Sort 堆排序Bucket Sort 桶排序又叫箱排序Radix Sort 基数排序Count S 阅读全文
posted @ 2023-01-27 17:44 ®Geovin Du Dream Park™ 阅读(49) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CSharpDataStructuresAlgo 阅读全文
posted @ 2023-01-27 14:49 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: sql: --dbo.BillingDetails --BillingDetailId int identity --Owner --Number --BankName --Swift --CardType int --ExpiryMonth --ExpiryYear --Discriminator 阅读全文
posted @ 2023-01-26 20:38 ®Geovin Du Dream Park™ 阅读(41) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// mysql 数据库用编码类型 utf8mb4 /// 向sqlserver 数据库插入emoji 表情包 /// 插入emoji 的数据时,值value 需要添加 N‘’ 否则乱码 C#代码不用sql脚本操作则不存在 /// https://github.com/ 阅读全文
posted @ 2023-01-25 00:22 ®Geovin Du Dream Park™ 阅读(40) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 108 下一页