共计 918 个字符,预计需要花费 3 分钟才能阅读完成。
本篇内容介绍了“怎么把 sql 查询的结果拼接起来”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
SELECT distinct server_principal_name,object_name,event_time
FROM sys.fn_get_audit_file(\\10.0.0.100\Ad\Audit_DDL_678FA9A7-018F-4280-97C7-FD1861CAB760.sqlaudit , NULL, NULL)
WHERE database_name = HR and action_id= CR and class_type= U
union all
SELECT distinct server_principal_name,object_name,event_time
FROM sys.fn_get_audit_file(\\10.0.0.100\Ad\Audit_DDL_678FA9A7-018F-4280-97C7-FD1861CAB760.sqlaudit , NULL, NULL)
WHERE database_name = HR and action_id= CR and class_type= U
union all
SELECT distinct server_principal_name,object_name,event_time
FROM sys.fn_get_audit_file(\\10.0.0.100\Ad\Audit_DDL_678FA9A7-018F-4280-97C7-FD1861CAB760.sqlaudit , NULL, NULL)
WHERE database_name = HR and action_id= CR and class_type= U
把查询出来的 server_principal_name,object_name,event_time 三个字段的结果拼接起来。
“怎么把 sql 查询的结果拼接起来”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!