查詢mysql的數據庫,mysql四種基本數據庫操作命令?
數據操作語言包括四種:增(insert)刪(delete)查(select)改(update)
1、添加數據
命令:insert into values("里面放的數據是要添加的東西")
2、查詢表中的數據
1)、查詢所有行
命令: select from < 表名 > where < 表達式 >
2)、查詢前幾行數據
3、刪除表中數據
命令:delete from 表名 where 表達式
例如:刪除表stu中學號為001 的記錄
mysql> delete from MyClass where id='001';
4、修改表中數據
命令:update 表名 set where 條件
mysql> update stu set age=19 where id='001';