SQL Server数据导出SQL语句
use test
go
/*
王云朋
2017年8月15日10:36:56
*/
--导出存储过程
/*
导出表,或试图
*/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_exporttb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[p_exporttb]
GO
create proc p_exporttb
@
原创
2021-01-12 16:47:50 ·
1526 阅读 ·
0 评论