MySQL基本資料操作,MySQL資料操作

來源:互聯網
上載者:User

MySQL基本資料操作,MySQL資料操作
創造資料(插入資料)

insert into 表名(欄位列表) valuse(值列表);insert into exam_student(stu_name,stu_no) values('xiaoming','1205040219');

如果需要在插入資料時,為所有的欄位設定值,那麼可以省略欄位列表,要求與表中的欄位順序一致。

insert into exam_student values('zhangsan','3203423',100);

獲得資料(查詢資料)
select 欄位列表 from 表名 查詢條件;欄位列表可以使用*代替,表示所有的欄位。查詢條件可以省略,表示所有的記錄都獲得,相當於where 1;select stu_name,stu_no from exam_student;

alter table exam_student add stu_score int;select * from exam_student;

有條件的尋找:

select * from exam_student where stu_age>50;

刪除資料
delete from 表名 條件;刪除需要在邏輯上嚴格給條件,否則容易造成資料誤操作,導致損失。文法上可以沒有where。delete from exam_student where stu_age>50;

修改資料
update 表名 set 欄位=新值,··· 條件;update exam_student set stu_age=88 where stu_age<=50;

相關文章

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.