Common SQL Server syntax at work

Source: Internet
Author: User

I have been engaged in Oracle development before and found that some SQL server operations are still different from those of Oracle.

Create a table based on an existing table:

Oraclec creation method:

Create Table temp_org_employee
Select * From org_employee

SQL Server creation method:

Select * into temp_org_employee from org_employee

 

Modify the column type and length

Create Table Name (column A varchar (10); goalter table name alter column A nvarchar (25) not null; // not empty goalter table name alter column A varchar (50) NULL; go

 

Add or delete a column

Create Table Name (column A varchar (10); goalter table name Add column Column B nvarchar (25) NULL; // Add a field goalter Table Name drop column Column B varchar (50) NULL; // delete a column go

 

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.