1. 程式人生 > 其它 >718. 最長重複子陣列

718. 最長重複子陣列

安裝MySQL

配置MySQL環境變數

mysql -h localhost -u root -p登入MySQL

檢視版本 select version();

show status; 檢視資料庫狀態資訊

status; 檢視連結地址

show variables like '%connection%'; 檢視連結數

select now(); 獲取當前時間

show variables like '%timeout%'; 檢視各種超時指令

create database 資料庫名稱; 建立資料庫

show databases; 檢視資料庫

show create database testDev \G;檢視建立資料庫的詳細過程

use 資料庫名稱; 進入資料庫

show variables like 'datadir'; 檢視資料庫路徑資訊

檢視配置檔案:

MySQL常用資料型別

數字:tinyint smallint int bigint bit
小數:decimal float double
字串:char varchar blob text enum set
json資料型別(MySQL8.0新增加的特性)

建立表:

  use 目標資料庫; 選擇目標資料庫

  CREATE TABLE 表名 (表內部屬性,表內部屬性); 建立表

show tables; 檢視庫裡面有多少個表

desc user;查看錶的結構

show create table user \G; 檢視建立表的詳細的資訊

create table 被建立的表 like 原始表; 克隆表 檢視資料庫表結構 rename table tableOldName to tableNewName; 修改表的名稱 alter table tableName 列名 型別; 新增表結構 新增欄位 alter table tableName add 列名 型別 comment "說明";comment是對新增的欄位進行備註
alter table tableName add 列名 型別 first;first關鍵字是把新增的欄位放在表結構的第一位
alter table tableName add 列名 型別 alter 欄位名;after關鍵字是調整表的欄位在某個欄位的後面

modify:調整欄位的資料型別

alter table tableName modify 列名 新型別;

change:調整列的名稱

alter table tableName change 舊列名 新列名 型別;

alter table tableName drop 列名;
drop:刪除列

drop table 表名; 刪除表