MySQL入門操作記錄

2021-10-04 20:59:05 字數 2372 閱讀 7240

如果啟動資料庫失敗但是沒有錯誤返回 ,輸入指令

mysqld --initialize-insecure
啟動資料庫net start mysql

關閉資料庫net stop mysql

解除安裝資料庫sc delete mysql

登入到mysql

mysql -u root -p
mysql -d firstd-u root -p
mysql -d firstd -u root -p <

first

.sql

建立資料庫create database firstdatabase

進入使用資料庫use firstdatabase

建立資料表

create

table students

(id int

unsigned

notnull

auto_increment

primary

key,

name char(16

)null

default

"-",

age int

unsigned

notnull

);

顯示資料庫資訊:

describe students;
插入資料:

insert

into students (name,age)

values

("name1",20

);

insert

into students values

(null

,"name2",21

);

查詢資料:

select

*from students;

select

*from students where age >20;

select name from students;

select

*from students where name like

"%1%"

;

更新修改表資料:

update students set name=

"name3"

where id=1;

update students set age = age+

1;

刪除表資料:

delete

from students where age=

21;

新增列:

alter

table students add *** char(6

)null

default

"-";

修改列:

alter

table students change tel char(16

)not

null

default

"***"

after age;

刪除列:

alter

table students drop tel;

資料表重新命名:

alter

table students rename student;

刪除資料表:

drop

table student;

刪除資料庫:

drop

database firstd;

mysql 記錄操作 MySQL 記錄操作

建立 以下所有操作均在user temp表中進行操作。create table user temp id int primary key auto increment,name char 5 not null,gender enum 男 女 default 男 age tinyint not nul...

mysql 記錄操作 MySQL記錄操作

一 概覽 mysql資料操作 dml 在mysql管理軟體中,可以通過sql語句中的dml語言來實現資料的操作,包括 使用insert實現資料的插入 update實現資料的更新 使用delete實現資料的刪除 使用select查詢資料以及。二 插入資料 insert 1.插入完整資料 順序插入 語法...

mysql操作記錄

零零散散用過好多次mysql,但是一直沒有記錄過怎麼使用,每次都去找教程,有些麻煩,所以在這記錄下常用的到的一些東西,以後找也方便。第一課 不小心把database mysql給刪了 本來是要刪除我自己建的另乙個資料庫,但是鬼使神差的執行了下面一句 drop database mysql 然後,在要...