07 2022 档案
摘要:https://www.cnblogs.com/no7dw/archive/2009/12/10/1620762.html
阅读全文
摘要:1. http://t.zoukankan.com/whl4835349-p-5889770.html
阅读全文
摘要:https://blog.csdn.net/qq_37634156/article/details/120055284 总结: 1.HAVING 子句的3 个要素:常数、聚合函数 和 聚合键 2.HAVING 大多数情况下和结合 GROUP BY 来使用,但不是一定要结合 GROUP BY 来使用
阅读全文
摘要:declare @count_sql nvarchar(max),@count int set @count_sql = 'select @vlaue = count(1) from t_dd_qm_product_testitem_course with (nolock) where group_
阅读全文
摘要:1.将存储过程创建在master数据库中,注意存储过程不能有参数 2.执行下面语句设置服务启动时自动执行 use master exec sp_procoption '存储过程名','startup','on' 3.取消服务启动时自动执行 use master exec sp_procoption
阅读全文
摘要:看过的链接:http://t.zoukankan.com/varorbc-p-4308722.html 问题1:如何在sql server数据库中链接oracle数据库 问题1解决办法:下面是执行成功的sql脚本 USE [master] GO EXEC master.dbo.sp_addlinke
阅读全文