A.drop database數(shù)據(jù)庫(kù)名;刪除數(shù)據(jù)庫(kù) B.delete from表名;刪除表中所有記錄條 C.delete from表名where字段名=值;刪除符合條件的記錄條 D.drop table表名;刪除表
A.set password for root@'localhost'=password('123'); B.update mysql.user set password=password('123') where user='root' and host='localhost'; C.select password for root@'localhost'=password('123'); D.create user root@'localhost' identified by'123';