1. 程式人生 > >MySql入門語句(二)

MySql入門語句(二)

1.建表

create table Student (
  ID  int, 
  Name varchar(20),
  Age int
);

2.增

insert into Student values(1,"April",21);
insert into Student values(2,"Harris",22);
insert into Student values(3,"Dave",19);

3.刪

delete from Student where Name='Dave';

    刪除Name=“Dave”的行。如果沒有where子句,會刪除整個表中的資料。

4.改

update Student set Age = 20 where ID=1; 

    修改ID=1的行,將年齡修改為20。如果沒有where子句,會將表中所有行的年齡改為20。

5.查

select * from Student Where Age>20;

    檢視年齡大於20的行。如果沒有where子句,會查看錶中所有的行。