摘要: --declare @table nvarchar(50) = '子表'; --declare @size int = 10; --declare @index int = 3; --declare @order nvarchar(50) = 'Id'; if not @size > 0 begin 阅读全文
posted @ 2024-04-16 13:14 大胡子毛绒老头 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 第一步:修改web.config <configuration> <system.webServer> <handlers> <add name="x" verb="GET" path="*.css.ashx" type="FileResolver" /> <add name="xx" verb=" 阅读全文
posted @ 2024-04-03 12:20 大胡子毛绒老头 阅读(16) 评论(0) 推荐(0) 编辑
摘要: using System.Collections.Generic; using System.Data; using System.Dynamic; using System.IO; using System.Linq; namespace Tools { public static class E 阅读全文
posted @ 2024-01-19 10:26 大胡子毛绒老头 阅读(56) 评论(0) 推荐(0) 编辑
摘要: sql 源自英文语序 阅读全文
posted @ 2023-05-05 10:22 大胡子毛绒老头 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 不改需求文档中的错别字 阅读全文
posted @ 2023-03-23 11:52 大胡子毛绒老头 阅读(2) 评论(0) 推荐(0) 编辑
摘要: select object_name(id) from ( select parent_object_id id, count(*) kc from sys.foreign_key_columns a group by a.parent_object_id ) r where r.kc = (sel 阅读全文
posted @ 2023-01-12 13:36 大胡子毛绒老头 阅读(7) 评论(0) 推荐(0) 编辑
摘要: print len('qwer ');--4 print len('qwer ');--4 print len('qwer ' + 't');--6 print len(' qwer');--5 --只试了sql server 阅读全文
posted @ 2023-01-07 01:27 大胡子毛绒老头 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 拼音全拼加声调,比如BianLiangMing442,使用代码提示时,输入442即可,几乎不会出现重码,并且这个变量名的信息量很足! 阅读全文
posted @ 2022-11-01 09:07 大胡子毛绒老头 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 转载于:Script SQL Server 2005 diagrams to a file - CodeProject /** <summary> Based on ufn_VarbinaryToVarcharHex by Clay Beatty. Used by Tool_ScriptDiagra 阅读全文
posted @ 2022-04-03 02:05 大胡子毛绒老头 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 需求是:仅想改变combobox的默认样式,所以 template 是直接在属性窗口点击转化为本地值的。 using System.Collections.Generic; using System.Windows; namespace WpfApp2 { public partial class 阅读全文
posted @ 2020-02-26 10:01 大胡子毛绒老头 阅读(739) 评论(1) 推荐(0) 编辑