//創(chuàng)建一個數(shù)據(jù)庫
//create database 數(shù)據(jù)庫名稱
//創(chuàng)建一個數(shù)據(jù)庫列表
//create tabele(列表名陳)
//向表中插入數(shù)據(jù)
//insert into (表名)values(屬性值)
//查詢列表中的數(shù)據(jù)
//select(列名稱)from表名稱【查詢條件】
//例;select name age from student
//select *from student;(*)表示查找表中所有內(nèi)容
//指定條件查找表中所有性別為女的數(shù)據(jù)
//select* from student where sex=“女”
//查找年齡21歲以上的所有人信息
//select * from student where age>21;
//查找名字中帶有‘王’的所有人信息
//select * from student where name like “%王%”;
//查詢id小于5且年齡大于20的所有人信息:
//select * from student where id<5 and age>20;
//更改表中數(shù)據(jù) 用“update”
//把id為5的手機號改為-
//update student set number=- where id=5;
//所有人年齡加1
//update student set age=age+1;
//將手機號為 13288097888 的姓名改為 "張偉鵬", 年齡改為 19:
//update student set name=“張偉鵬”age=19 where number=13254515
//刪除 關(guān)鍵字‘delete‘---delete from 表名稱 where 刪除條件;
//刪除id為2的行
//delete from student where id=2
//alter table 語句用于創(chuàng)建后對表的修改;添加
//alter table [表名] add【列名】 【列數(shù)據(jù)類型 插入位置】
//在名為 age 的列后插入列 birthday:
//alter table student add birthday data age;