色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

mysql四種基本數(shù)據(jù)庫(kù)操作命令

mysql四種基本數(shù)據(jù)庫(kù)操作命令?

數(shù)據(jù)操作語(yǔ)言包括四種:增(insert)刪(delete)查(select)改(update)

1、添加數(shù)據(jù)

命令:insert into values("里面放的數(shù)據(jù)是要添加的東西")

2、查詢表中的數(shù)據(jù)

1)、查詢所有行

命令: select from < 表名 > where < 表達(dá)式 >

2)、查詢前幾行數(shù)據(jù)

3、刪除表中數(shù)據(jù)

命令:delete from 表名 where 表達(dá)式

例如:刪除表stu中學(xué)號(hào)為001 的記錄

mysql> delete from MyClass where id='001';

4、修改表中數(shù)據(jù)

命令:update 表名 set where 條件

mysql> update stu set age=19 where id='001';