mysql的一些簡單語句

2021-06-19 22:41:42 字數 1463 閱讀 8722

//安裝mysql

mysqld install

//解除安裝mysql

mysqld remove

//登入mysql

mysql -u root -p

//新建資料庫

create database d_dname;

//使用資料庫

use t_tname;

//檢視資料庫的屬性

desc t_tname;

//刪除資料庫

drop d_dname;

//建乙個表

create table if not exists t_user(

id int(11) primary key auto_increment,

username varchar(20),

nickname varchar(20),

password varchar(30)

)//檢視表的屬性

desc t_user;

//刪除表

drop t_user;

//向資料庫中新增乙個字段

alter table t_user add address varchar(100);

//刪除表中的某個字段

alter table t_user drop address;

//刪除表中的某個字段

alter table t_user drop column address;

//修改欄位的名

alter table t_user change nickname nk varchar(50);

//移動字段所在的位置

alter table t_user modify password varchar(30) after username;

create table if not exists t_student(

id int(11) primary key auto_increment,

name varchar(50),

no varchar(50) not null,

born datetime

);//匯入外部的文字

source d:/mysql/create_table.sql

//修改密碼的操作

grant all on *.* to 'root'@'localhost' identified by '123456'

//建立新的使用者

mysql的一些高階語句

mysql insert into table field values value on duplicate key update field concat value ifnull field 具體本條sql的用法,請檢視手冊 二,講一下統計的用法,主要介紹如何用一條sql語句,統計某個使用者的...

mysql 一些語句的使用

mysql u使用者名稱 p密碼 例如 mysql u p show databases 檢視所有的資料庫 create database weixin 建立乙個名為weixin的資料庫 mysql use weixin 選擇使用weixin資料庫 mysql set names utf8 設定客戶...

一些基本的mysql語句

在使用like時,請注意加上 等符號 表示任意0個或多個字元 表示任意單個字元。表示括號內所列字元中的乙個。表示不在括號所列之內的單個字元。通過and or等對這些條件進行連線。要把整個條件語句進行連線,而不是只是最後的值 select from webdata80 where title like...