MySQL 增刪改查

2022-08-27 18:42:15 字數 579 閱讀 6322

新建資料庫

create database newdatabase;

選擇資料庫

use newdatabase;

新建表create table newtable(id int,name varchar(20),age int);

給表新增資料

insert into newtable(id,name,age) values(1,'zhangsan',18);

第二種寫法:

insert into newtable set id=3,name='lisi',age=30;

新增多條資料:

insert into newtable values(2,'aa',12),(3,'bb',13);

刪除資料庫

drop database newdatabase;

刪除表drop table newtable;

快速刪除表

truncate newtable;

刪除全部資料

delete * from newtable;

刪除列alter table 表名 drop column 列名;

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...

mysql增刪改查擴充套件 MySQL增刪改查

1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...

mysql建刪改查 MySQL增刪改查

登入mysql mysql u root p 密碼 建立使用者 mysql insert into mysql.user host,user,password values localhost test password 1234 這樣就建立了乙個名為 test 密碼為 1234 的使用者。注意 此...