MySQL是一個廣泛使用的開源數(shù)據(jù)庫管理系統(tǒng),支持多種語言,如C,C++,Java,Python等。命令行是MySQL的一種最基本的交互方式,使用一些簡單的命令行語法,可以輕松地連接MySQL服務(wù)器,創(chuàng)建數(shù)據(jù)庫,插入數(shù)據(jù)等。
以下是MySQL命令行的一些基本語法:
連接MySQL服務(wù)器: mysql -h hostname -u username -p password 創(chuàng)建新數(shù)據(jù)庫: create database databasename 使用數(shù)據(jù)庫: use databasename 創(chuàng)建新表: create table tablename ( column1 datatype constraint, column2 datatype constraint, .... ) 插入數(shù)據(jù): insert into tablename (column1, column2, ...) values (value1, value2, ...) 查詢數(shù)據(jù): select * from tablename where condition 更新數(shù)據(jù): update tablename set column1=value1, column2=value2, ... where condition 刪除數(shù)據(jù): delete from tablename where condition 退出MySQL: quit