第六章 運算元據

2022-07-19 12:09:11 字數 794 閱讀 6962

建立資料表

create table 資料表名(列名1 屬性,列名2 屬性...);

檢視表結構

show [full] columns from 資料庫名 [from 資料庫名];

使用describe 資料庫名 列名;

修改表結構

alter [ingnore] table 資料庫名 alter_spec[,alter_spec]...| table_options

新增新字段及修改字段定義

alter table td_admin add email varchar(50) not null,modify user varchar(40);

修改欄位名

alter table db_admin.tb_usernew1 change column user username varchar(30) null default null;

刪除字段

alter table tb_admin drop email;

修改表名

alter table tb_usernew1 rename as tb_userold;

重新命名表

rename table tb_admin to tb_user;

複製表create table [if not exists] 資料表名

複製表時,想要同時複製其中的內容:

create table tb_usernew1

as select * from tb_user;

刪除表drop table [if exists] 資料表名;

第六章 SQL運算元據庫

6.1 建立資料表 use db admin create table tb admin id int auto increment primary key,user varchar 30 not null,password varchar 30 not null,createtime datati...

mysql第六章 第六章 mysql日誌

第六章 mysql日誌 一 錯誤日誌 錯誤日誌的預設存放路徑是 mysql 存放資料的地方 hostname.err 1.修改錯誤日誌存放路徑 mysqld log error data mysql mysql.log 2.檢視配置命令 show variables like log error 3...

第六章 指標

1.多位元組資料的位址是在最左邊還是最右邊的位置,不同的機器有不同的規定,這也正是大端和小端的區別,位址也要遵從邊界對齊 2.高階語言的乙個特性就是通過名字而不是位址來訪問記憶體的位置,但是硬體仍然通過位址訪問記憶體位置 3.記憶體中的變數都是義序列的0或1的位,他們可以被解釋為整數或者其他,這取決...