mysql數(shù)據(jù)庫命令大全,mysql四種基本數(shù)據(jù)庫操作命令?
數(shù)據(jù)操作語言包括四種:增(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é)號為001 的記錄
mysql> delete from MyClass where id='001';
4、修改表中數(shù)據(jù)
命令:update 表名 set where 條件
mysql> update stu set age=19 where id='001';