Database Basic Course

Source: Internet
Author: User

CREATE DATABASE s20150417 -- Create a database with a database name that is not a pure number

CREATE DATABASE Whirlpool Naruto

DROP Database Whirlpool Naruto -- Delete database

Use Whirlpool Naruto -- using the database

Go -- connector

CREATE TABLE  Xuesheng -- Create a table

(

Code int Not null,

name varchar (+) Not null,

Sex int ,

degree decimal (18,2) not null

)

Go

Insert into Xuesheng Values  (1,' Zhang Mowgli ', 1,99) --One by one corresponds to the add

Insert into Xuesheng (code,name,degree) Values (4,' Delmar ', 98) -- Specify item additions

Go

Select * from xuesheng-- querying all data in a table

Go

Update Xuesheng Set sex=0 --Modify the value of the sex column in all rows

UPDATE  xuesheng  set  sex =0 where  code =1  --where Span style= "Font-family:times New Roman;" >code=1 sex

Update Xuesheng Set name=' Prince ',code=7,sex=1 where name=' Zhang Mowgli '-- to name= Zhang Mowgli's this line into name= ' Prince ', code=7 , Sex=1

Go

Delete from Xuesheng -- Delete all data

Delete from Xuesheng where Code=4 -- Delete This line of code=4

drop table Xuesheng -- Delete entire table

Database Basic Course

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.