show databases;顯示所有資料庫
use test;使用名為test的資料庫
show tables;顯示test下的表的資訊
desc info;顯示info表的具體表結構
select * from info; 選擇info表中所有內容
insert into info values (1,『張杰』,17);插入一條資訊
insert into info (id, name,adrres) values (1,『張杰』,18);與上面是一樣子的
drop from info ;清除表中內容
quit;//退出資料庫
create database test;建立名為test的資料庫
//建立名為info的表
create table info(id int , name varchar(20), age int);
drop table info;刪除表
//修改表的名字
alter或者rename來實現
alter table old_name rename to new_name
alter table info rename to student; info表改名為student
或rename table old_name to new_name
rename table info to student;
//增加表的字段
alter table table_name add column_name column_type
//修改欄位名字
通過命令alter table table_name change column_name new_column_name new_column_name_type
//刪除字段
通過命令alter table table_name drop column_name;
在cmd模式下對mysql的操作語句
a.window下的語句 1.mysqld install 安裝mysql服務 2.mysqld remove 解除安裝mysql服務 3.net start mysql 啟動服務 4.net stop mysql 停止服務 5.mysql u root p 登入 6.mysqladmin u ro...
MySQL學習筆記(cmd模式下的操作)
1.1.1命令如下 c users zjw mysql hlocalhost uroot p enter password h後面跟著主機位址 u後面跟著使用者名稱 p後面跟著使用者密碼 如果是進入本機的mysql,則可以省略 h的內容。注意 如果沒有配置path,則需要進入到mysql的bin目錄...
cmd下 mysql操作命令大全詳解
啟動 net start mysql 進入 mysql u root p mysql h localhost u root p databasename 列出資料庫 show databases 選擇資料庫 use databasename 列出 show tables 顯示 列的屬性 show c...