mysql基本操作

2021-08-17 04:26:23 字數 1709 閱讀 3603

1、drop database database_name #刪除資料庫

2、use  database_name#進入指定資料庫|

3、show databases#列出資料庫列表

4、create database database_name charset "utf-8";#建立資料庫,並指定utf-8字符集,支援中文顯示

5、show index from table_name#顯示資料表的索引和主鍵資訊

6、show columns from table_name #顯示資料表的屬性

7、desc table_name #顯示資料表結構

建立資料表

語法:

create table table_name(column_name,column_type)

案例,建立乙個學生資訊表

create table student_info(

stu_id int not null,

name char(32) not null,

age int not null,

reister_date date,

primary key (stu_id)

);

插入資料:

語法:

insert into table_name(

column_field1,

column_field2

....

column_fieldn)

values (

value1,

value2,

....

value3);

案例,插入一條資料

insert into student_info(name,age,register_date) values ("zhangsan",25,'2018-03-18')

查詢資料:

語法:

select column_name1,column_name2 from table_name [where clause] [limit n] [offset m]  #offset設定偏移量,limit 設定顯示多少條目

案例:

select * from student_info where stu_id=1;#查詢id=1的條目

select * from student_info where register_date<'2017-01-01' limit 1 offset 1  ;#查詢2017-01-01之前的資訊,且設定偏移量為1,僅顯示一條資訊

更新資料:

語法:

update 

table_name set field=new-value1,filed=new-value2.....filed=new-valuen [where clause]

刪除資料:

語法:

delete

from table_name [where clause]

mysql基本操作 MySQL基本操作

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...

mysql 基本操作 mysql基本操作

mysql 建立表,並設定主鍵自增 create table log logid int 4 primary key not null auto increment,logtitle varchar 32 not null logcontent varchar 160 not null logtim...

mysql基本操作

1,檢視資料庫狀態 及啟動停止 etc init.d mysqld status etc init.d mysqld start etc init.d mysqld stop 2,給使用者配置初始密碼123456 mysqladmin u root password 123456 3,修改root使...