Automatic detection of the field in the table, both to avoid the deletion of errors, but also to improve the flexibility of the program.
/*
Author:nyb
Time:2003/12/29
Fixtime:
AIM: See if there is a field in the table, if so, delete
Input:
Call:
Execute Funcdropcolumn ' PSZ31 ', ' z31no '
*/
CREATE PROCEDURE Funcdropcolumn
@tablename varchar (128),--table name
@Columnname varchar (128)--column name
As
Set @tablename = LTrim (RTrim (@tablename))
Set @Columnname = LTrim (RTrim (@Columnname))
DECLARE @string varchar (8000)
IF EXISTS (SELECT * from syscolumns where id=object_id (@tablename) and name = @Columnname)
Begin
Select @string = ' ALTER TABLE ' + @tablename + ' DROP COLUMN [' + LTrim (RTrim (@Columnname)] + '] '
Print @string
Execute (@string)
End
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service