摘要:
转载自:https://blog.csdn.net/fightHHA/article/details/81626383 https://blog.csdn.net/weixin_49199646/article/details/109492763?spm=1001.2101.3001.6650.8& 阅读全文
摘要:
1、方法重写 class Parent { public void m1() { m2(); } public virtual void m2() { Console.WriteLine("I am Parent."); } } class Child : Parent { public overr 阅读全文
摘要:
VisualStudio2019安装完成之后,由于开发需求需要安装其它模块或组件,点击工具,选择获取工具和功能,进行选择安装。 做个笔记随笔记录一下。 选择需要的模块进行即可。 【转自】https://www.cnblogs.com/jiayan1578/p/13665423.html 阅读全文
摘要:
1、 if 参数 = 值1 begin 执行代码1 end else if 参数 = 值1 begin 执行代码2 end else begin 执行代码3 end 2、goto 标签 3、 declare @busno varchar(10) = '0001' -- = 'ALL' -- = '' 阅读全文
摘要:
数据迁移:把旧数据库中的所有用户表数据插入到新库存中 --新数据库为:hydee --旧数据库为:hdyee_old use hydee; go set nocount on SET QUOTED_IDENTIFIER OFF declare @sql nvarchar(max) declare @ 阅读全文
摘要:
详细内容查看:https://blog.csdn.net/weixin_43347659/article/details/120829241 查询某个表的主键名称: select c.name from sys.indexes i join sys.index_columns ic on i.obj 阅读全文
摘要:
一、对于p_get_usertable中的语句: 1、获取所有用户表(并且架构为dbo。感觉可以不要该限制)的表名: select a.name from sysobjects a,sysusers b where a.xtype = 'u' and b.uid = a.uid and b.name 阅读全文
摘要:
USE [……] GO /****** Object: StoredProcedure [dbo].[p_init_busno] Script Date: 08/18/2022 16:14:53 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER O 阅读全文
摘要:
这属于权限不够。 找到数据库文件,右键属性-安全,会发现没有权限查看: 点击“高级”——“继续”——“添加”——“选择主体”——“高级”——“立即查找”——选择一个账户,然后一路确定 阅读全文
摘要:
select o.*,'|',m.* from sys.objects o join sys.sql_modules m on o.object_id = m.object_id where m.definition like '%代码段%' --也可以使用SQL SERVER 2000中的视图sy 阅读全文