mysql操作常用語句

2022-08-20 17:33:09 字數 1115 閱讀 2305

1、建立、刪除、使用info

create database info;   //

建立資料庫

drop database info;

//刪除資料庫info

use info;

//使用資料庫

2、建立表、刪除表、插入資料、更新資料、查詢資料、刪除資料

//

建立student表

create table student(id int primary key auto_increment, name varchar(255), age int,score int); //

自動向下增長建立;

create table student(id

int primary key,name varchar(255),age int, score int); //

需指定建立id

//刪除表

drop table student; //

刪除表//

插入資料

insert into student(id, name, age) values(1,'

make

',18); //

插入資料1

insert into student(id, name, age, score) values(

2,'mary

', 20, 60); //

插入資料2

//更新資料

update student set score = 90

where id =3; //

跟新資料

//查詢資料

select * from student; //

從student表中查詢所有資料

select score from student where name = '

make

'; //

查詢make的score

//刪除資料

delete from student where name = '

make

'; //

刪除make的資料

3、

mysql常用語句 MySQL常用語句

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

MySQL操作常用語句

主表中的資料 dml 表資料的增刪改 準備 建立分類表,用以練習 create table category cid int primary key,主鍵約束 cname varchar 100 需求1 向category表中,新增一條資料 1,手機數碼 insert into category c...

php mysql 常用語句 mysql常用語句

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