SQL Server Table Management _ about the operation of the table and adding and modifying the operation of the detailed (case code)

Source: Internet
Author: User

SQL Server Table Management _ about the operation of the table and adding and modifying the operation of the detailed (case code)Overview:

Tables consist of rows and columns, and each table must have a table name.

SQL CREATE TABLE Syntax
CREATE TABLE table_name (column_name1 data_type (size), column_name2 data_type (size), Column_name3 data_type (size),....);
1. View Table

exec sp_help table1;
2. Create a table

Create Table table1 (    varchar());
3, modify the table

1. Modify the table table1 to increase the name length to 40.

Alter Table Alter column varchar (a);

2. Modify table table1, add sex column, gender.

Alter Table Add varchar (a);
4. Delete a table
Drop table table1;

is not so esay!!!!

SQL Server Table Management _ about the operation of the table and adding and modifying the operation of the detailed (case code)

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.