MySQL是一種非常流行的關(guān)系型數(shù)據(jù)庫管理系統(tǒng)。以下是MySQL的一些常用語句集錦。
CREATE DATABASE database_name; // 創(chuàng)建一個新的數(shù)據(jù)庫 USE database_name; // 選定要使用的數(shù)據(jù)庫 CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ..... ); // 創(chuàng)建一個新的數(shù)據(jù)表 INSERT INTO table_name (column1, column2, column3, ...) VALUES (value1, value2, value3, ...); // 向數(shù)據(jù)表中插入新的記錄 SELECT column1, column2, column3, ... FROM table_name; // 從數(shù)據(jù)表中選擇特定的列 SELECT * FROM table_name; // 從數(shù)據(jù)表中選擇所有的列 UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE condition; // 更新數(shù)據(jù)表中的記錄 DELETE FROM table_name WHERE condition; // 刪除數(shù)據(jù)表中的記錄 ALTER TABLE table_name ADD column_name datatype; // 向數(shù)據(jù)表中添加新的列 DROP TABLE table_name; // 刪除整個數(shù)據(jù)表 DROP DATABASE database_name; // 刪除整個數(shù)據(jù)庫
使用這些MySQL語句可以完成各種各樣的數(shù)據(jù)庫操作,如創(chuàng)建新的數(shù)據(jù)庫、數(shù)據(jù)表、插入和更新記錄以及刪除舊的記錄和數(shù)據(jù)表等等。