Mysql常用語句

2021-08-03 20:05:56 字數 452 閱讀 6475

1、啟動mysql: net start mysql 

2、退出mysql:exit

3、連線mysql資料庫:

mysql -hlocalhost -uroot -p 4、

顯示資料庫列表:show databases;

5、建立資料庫:create database 資料庫名

6、建表 :use 資料庫名; create table 表名()

7、刪除資料庫:drop database 庫名;

8、刪除資料表:drop table 表名;

9、匯入.sql檔案命令:source d:/mysql.sql

10、檢視資料庫表結構:

desc 表名

11、檢視資料庫中有哪些表:show tables;

12、修改字段型別或長度:alter table 表名 modify column 欄位名 型別;

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...

php mysql 常用語句 mysql常用語句

一 修改mysql使用者密碼 mysql h localhost u root p 命令列登入 update user set password password 123456 where user root 二 資料庫操作 show databases 顯示資料庫 create database ...

MySQL常用語句

and和or可以混用,and比or具有更高的優先順序,但盡量使用圓括號區分 自動過濾重複的資料owner,關鍵字distinct select distinct owner from pet 按照生日公升序排列,關鍵字order by select name,birth from pet order...