Common table name modifications for SQL Server

Source: Internet
Author: User

View table:exec sp_help table name

Look up columns: exec sp_columns table name

View column:Select * from information_schema.columns where table_name = ' table name '

Add column:ALTER TABLE name add column name varchar

Delete Column:ALTER TABLE table name drop Column name

Modify Column name:exec sp_rename ' table name. Field name ', ' New name ', 'column '

Modify column type:ALTER TABLE name ALTER COLUMN name varchar

Verify that this field is included

IF not EXISTS (SELECT * from syscolumns WHERE [ID] = object_id (n ' Customer ') and [NAME] = n ' accesspoint ')

EXEC sp_rename ' customer.access ', ' accesspoint ', ' column '

Common table name modifications for SQL Server

Related Article

Contact Us

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

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.