查詢mysql語(yǔ)句,MySql數(shù)據(jù)庫(kù)的查詢刪除增加修改語(yǔ)句?
介紹mysql數(shù)據(jù)庫(kù)的基本查詢、刪除、增加、修改語(yǔ)句等常用數(shù)據(jù)庫(kù)語(yǔ)句。
第一步,查詢語(yǔ)句:select* from table_name;或select * from table_name where [條件]
第二步,增加語(yǔ)句或插入數(shù)據(jù)insert into table_name (clus...) values(values...)實(shí)例如圖:
第三步,修改數(shù)據(jù):update tablename set xx=xx,xxx=xx where xxx=xxx and xxx=xxx;
第四步, 刪除語(yǔ)句delete table_name where 條件實(shí)例如圖:
注意事項(xiàng)注意沒(méi)行末尾的分號(hào)不能漏掉!查詢時(shí)注意*好不能亂用,否則會(huì)導(dǎo)致數(shù)據(jù)庫(kù)運(yùn)行負(fù)擔(dān)。最好是需要什么字段就查詢什么字段。