您好,登錄后才能下訂單哦!
下文給大家帶來關于mysql的相關設置總結,感興趣的話就一起來看看這篇文章吧,相信看完mysql的相關設置總結對大家多少有點幫助吧。
1.安裝MySQL
使用管理員權限運行以下語句獲取mysql以及Python編程接口;
apt-get install mysql-server python-mysqldb
在安裝的過程中會讓你輸入密碼,輸入數據庫的密碼就行。
2.測試MySQL
輸入以下指令對mysql測試,首先是進入mysql(以用戶root登陸,會讓你輸入密碼,密碼輸入過程是不可見的,輸入完成后按回車就行):
mysql -u root -p
查看當前的數據庫:
show databases;
創建一個數據庫:
create database dt_test;
使用dt_test數據庫:
use dt_test;
查看數據庫中存在的表:
show tables;
創建一個表tbtest:
create table tbtest(id int,name varchar(20));
向tbtest表中插入數據:
insert into tbtest values(1,'test');
查看tbtest表中的數據:
select * from tbtest;
刪除dt_test數據庫中名稱為dttest的表格:
drop table tbtest;
刪除數據庫dt_test:
drop database dt_test;
退出:
quit
3.在MySQL中創建一個自增字段
crete table tb1(
id int auto_increment, //創建id為int型自增字段
name varchar(20) primary key, //設置name為主鍵
key(id)); //取消id主鍵
4.關于MySQL主鍵設置問題
1、最簡單的:
create table t1( id int not null, name char(20) );
2、帶主鍵的:
create table t1( id int not null primary key, name char(20) );
b:復合主鍵
create table t1( id int not null, name char(20), primary key (id,name) );
3、帶默認值的:
create table t1( id int not null default 0 primary key, name char(20) default '1' );
5.更改表或者數據庫名稱
alter table oldtablename rename newtablename;
看了以上關于mysql的相關設置總結詳細內容,是否有所收獲。如果想要了解更多相關,可以繼續關注我們的行業資訊板塊。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。