關於資料庫的一些基本命令(一)

2021-09-25 05:22:40 字數 2401 閱讀 3521

環境:centeros,mysql

2.退出資料庫:quit/exit/ctrl+d

3.展示當前所有的資料庫show databases;

5.顯示資料庫的版本:select version();

6.建立資料庫:create database test;create database [資料庫名]

建立的資料庫的編碼預設使用拉丁,如果要指定建立的資料庫的編碼則使用下面一條語句:

create database newtest default charset=utf8;

7.刪除資料庫:drop database test;drop database [資料庫名]

8.使用乙個資料庫:use [資料庫名]

9.檢視當前使用的資料庫:select database();

1.檢視當前資料庫中的表:show tables;

2.建立資料庫表create table student(id int, name varchar(30) );

建立帶條件約束的表:

create table teacher(

id int primary key not null,

name varchar(30)

);

create table students(

id int unsigned not null auto_increment primary key,

name varchar(30),

age tinyint unsigned,

high decimal(5,2),

gender enum('男','女') default '男',

cls_id int unsigned

);

3.檢視資料表結構:desc student;

4.插入資料:insert into students values(0, 'hrr', 18, 160, '女', '110');

5.對資料表新增新的字段:alter table students add birthday datetime;

datetime表示年月日時分秒

6.修改資料表中的字段屬性:

(1)修改字段,不重名版:alter table 資料表名 modify 列名 型別及約束;

alter table students modify birthday date;

(2)修改字段重新命名:alter table 資料表名 change 原名 新名 型別及約束;

alter table students change birthday birth date;

7.刪除字段:alter table 資料表名 drop 欄位名;

alter table students drop high;

(1)插入資料

insert into 表名 values(對應的字段的值)

insert into students values(0, 'hrr', 18, 160, '女', '110');

(2)部分插入

insert into 表名(欄位名) values(字段對應的值)。

insert into students(name, gender) values('小龍女','女');

(3)修改表中的記錄

update 表名 set 字段 where 條件;

update students set gender='男' where id = 2;

(4)查詢資料

select * from students where id=3;

select name,gender from students;

select name as 姓名,gender as 性別 from students;

select s.name,s.gender from student as s;

(5)消除重複行

distinct 字段:select distinct gender from student

(6)刪除資料

delete from students; --刪除資料表中所有的元素

一些常用的基本命令 一

一些常用的基本命令 uname a 檢視核心版本 ls al 顯示所有檔案的屬性 pwd 顯示當前路徑 cd 返回上一次目錄 cd 返回主目錄 date s 設定時間 日期 cal 顯示日曆 cal 2006 bc 計算器具 man info 幫助手冊 locale 顯示當前字型 locale a ...

MySQL一些基本命令

1 mysql服務的啟動和停止 net stop mysql net start mysql 2 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是 mys...

一些Linux (ubuntu )基本命令

新增使用者 useradd username 更改密碼 sudo passwd username 修改 etc sudoers 可以為使用者賦予 sudo 許可權 給某ip機器遠端訪問mysql 的許可權 mysql grant all privileges on to username 1.2.3...