SQL database statements

Source: Internet
Author: User

On xxx--main file

Name= ' xxxx ',

Fliename= ' Inside the path \xxxx.mdf ' that writes the file,

SIZE=XXMB,

FILEGROWTH=XXMB,

Maxsize=xxmb

)

Log on

(

Name= ' Xxxx_log ',

Filename= ' The path \XXXX_LOG.IDF ' inside the store,

SIZE=XMB,

filegrowth=xx%

)

Use MySchool

CREATE TABLE Class

(

Sid int Identity (primary key),

Sname Narchar (+) NOT NULL,

Sdesciootion nvarchar (512),

)

--Set the primary key that can be inserted into autogrow normally we don't do this.

SET Identity_insert Class off

--Add a new column to a known table

ALTER TABLE Class add Scount int NOT NULL

--Remove columns from the table

ALTER TABLE Class drop column Scount

--removing data from a table does not restore automatically added columns does not delete the table

Delete from Class where cid=3

--Delete the table directly

drop table Class

--delete Restores the automatically long columns

TRUNCATE TABLE Class

SQL database statements

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.