學習筆記 資料庫匯出語句及修改字段屬性

2022-07-08 01:21:09 字數 593 閱讀 7762

1. 檢視資料庫檔案在當前電腦中的位置:

show global variables like "%datadir%";

2.mysql中的匯出語句:

select * from persons into outfile 'person.unl'; (預設儲存到當前資料庫所在路徑)

3.取消persons表中id_p欄位的auto_increment屬性:

alter table persons modify id_p int;

4.刪除主鍵(需要先刪除auto_increment屬性):

alter table persons drop primary key;

5.新增主鍵:

alter table persons add primary key(id_p);

6.新增auto_increment屬性(需要先設定成主鍵):

alter table persons modify id_p int auto_increment;

7.複製persons表內容到新錶t1(但是字段屬性未同樣複製過去):

create table t1 select * from persons;

mysql筆記 資料庫介紹及基礎語句

資料庫,顧名思義是存放資料的倉庫 資料庫模型 層次模型 hierachical modal 網狀模型 network modal 關係模型 relational modal 關係模型是目前最重要的一種資料模型。關係資料系統採用關係模型作為資料的組織方式。語言劃分 資料定義語言 ddl 用於建立,修改...

學習筆記 資料庫

目前internet 上流行的 構架方式是lamp linux apache mysql php 即使用 linux 作為作業系統,apache 作為web 伺服器,mysql 作為資料庫,php作為伺服器端指令碼直譯器 由於這四個軟體都是免費或開放原始碼軟體 floss 因此使用這種方式不用花一分...

學習筆記 資料庫基本

必須字母開頭,不要用漢字 必須在1 30個字元之間 必須只能包含a z,a z,0 9,和 不能重名 create table student stuid int not null,stuname varchar 20 not null,char 2 not null,sid int not nul...