當前位置:首頁 » 數據倉庫 » 資料庫創建和刪除的語句
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

資料庫創建和刪除的語句

發布時間: 2023-08-08 20:36:20

資料庫中增刪改查的基本語句是什麼

常見如下:

進入mysql命令行: mysql -uroot -p;查看所有資料庫: show databases;增加創建資料庫: create database niu charset utf8;刪除資料庫: drop database niu;選擇資料庫: use databases。

查看所有表: show tables;查看創建資料庫的語句:show create database databasename;查看創建表的語句:show create table tablename;查看錶結構:desc tablenmae。

相關簡介

mysql_stmt_fetch是函數名,mysql_stmt_fetch()返回結果集中的下一行。

僅能當結果集存在時調用它,也就是說,調用了能創建結果集的mysql_stmt_execute()之後,或當mysql_stmt_execute()對整個結果集即行緩沖處理後調用了mysql_stmt_store_result()。

使用mysql_stmt_bind_result()綁定的緩沖,mysql_stmt_fetch()返回行數據。對於當前列集合中的所有列,它將返回緩沖內的數據,並將長度返回到長度指針。

㈡ 資料庫增刪改查的基本命令

以下是總結的mysql的常用語句,歡迎指正和補充~
一、創建庫,刪除庫,使用庫
1.創建資料庫:create database 庫名;

2.刪除資料庫:drop database 庫名;

3.使用資料庫:use 庫名;

二、創建數據表
1.創建表語句:create table 表名(欄位名1 欄位類型 欄位約束,欄位2 欄位類型 欄位約束...);

2.創建與現有表一樣欄位的新表:create table 表名 like 已有表名;

3.將查詢結果創建新表:create table 表名 select * from 現有表 where...(查詢語句);

三、查看錶結構,查看建表語句,刪除表
1.查看錶結構:desc 表名;

2.查看建表語句:show create table 表名;

3.刪除表:drop table 表名;

四、修改表結構
1.對數據表重命名:alter table 表名 rename 新表名;

2.增加欄位:alter table 表名 add 欄位名 欄位類型 欄位約束; (PS:可用first/after函數調整欄位位置)

3.刪除欄位:alter table 表名 drop 欄位名;

4.修改欄位類型及約束:alter table 表名 modify 欄位名 新類型 新約束;(PS:如不加新約束,會將建表時的約束清空,主鍵、外鍵、唯一約束除外)

5.修改欄位名稱:alter table 表名 change 欄位名 新欄位名 新欄位類型 新約束條件;

6.修改資料庫引擎:alter table 表名 engine=;(PS:主要有InnoDB和MyISAM,InnoDB對經常修改表數據友好,MyISAM對經常查詢表友好)

7.增加主鍵:alter table 表名 add primary key(欄位名);

8.刪除主鍵:alter table 表名 drop primary key;

9.增加外鍵:alter table 表名 add constraint 外鍵名 foreign kek(欄位名) references 主表(主鍵);

10.刪除外鍵:alter table 表名 drop foreign key 外鍵名;

11.刪除唯一約束:alter table 表名 drop index 欄位名;

12.設置自動增長的初始位置:alter table 表名 auto_increment=n;

五、向表中插入數據
1.向表指定欄位插入多條數據:insert into 表名(欄位1,欄位2...) values(數據1,數據2...),(數據1,數據2...),(數據1,數據2...),(數據1,數據2...);

2.將查詢結果插入表:insert into 表名 select 欄位名 from 表名(查詢語句);

3.載入外部數據到表:Load data local infile 『數據路徑』Into table 表名 Fields terminated by 『分隔符』Ignored 1 lines;

六、更新表數據、刪除表數據
1.更改滿足條件的欄位數據:update 表名 set 欄位計算1,欄位計算2... where 條件;

2.刪除滿足條件的數據:delele from 表名 where 條件;

3.刪除所有數據:方式一:delete from 表名; 方式二:truncate table 表名; 方式一會逐條進行刪除,速度較慢,方式二直接刪除,速度快;另外對自增欄位,方式一不能重置自增欄位的初始位置,方式二可以重置自增欄位的其實位置;