在千峰學習的第32天,今天我學習了建立資料庫、資料表,還有對資料表中的資訊進行增、刪、查、改。今天又是充滿希望的一天,加油!!
浪費時間是一樁大罪過。use 資料庫名; //進入庫
select database(); //檢視當前所在的庫
drop database 資料庫名; //刪除資料庫
系統中的位置:/var/lib/mysql/ //資料庫的實體,有清理和備份的作用
創表的目的:表是資料庫儲存資料的基本單位。
由若干個字段(列)組成。
主要用來儲存書庫記錄(行)。
定義乙個表必須要有列:比如
姓名(欄位名字、字段型別、約束)
創表:create table t1 (id int);
插入資料:insert into t1 values (1);
展示**:show tables;
檢視表結構:desc t1;
查詢所有資料:select * from t1;
資料型別三大類:
1.數值型別:整數型別int
浮點數型別float 小數
2.字串型別:字元系列char和varchar
列舉型別enum //單選
集合型別set //多選
3.時間和日期型別:年 year
日期date
時間time
日期和時間datetime
完整插入:insert into 表名 values (值1,值2,值3,…值n);
部分插入:insert into 表名 (列名,列名) values(值1,值2);
更新資料:update 表名 set 字段=值 where condition;
刪除資料:delete from 表名 where condition;
insert into t2 values(1,「zhangsan」);
注意:數字型別不能用引號,字元型別要用引號**義符)。
insert into t2 values(1,『1』);//這個也可以
進入資料庫:select * from 表名;
不進入資料庫:select * from 表名;
查部分列:select 列1,列2 from 表名;
單條件查詢:select * from 表名 where name=『zhangsan』 //where條件可以跟多個用and ,其實這就是乙個篩選查詢
開源資料庫MySQL DBA運維實戰
在千峰學習的第31天,今天我學習的安裝資料庫和資料庫的ddl語句。如果不想在世界上虛度一生,那就要學習一輩子。1.先關閉防火牆和selinux systemctl stop firewalld systemctl disable firewalld setenforce 0 vim etc seli...
開源資料庫MySQL DBA運維實戰 部署
root localhost wget root localhost wget root localhost wget root localhost wget 3.安裝相關軟體 三個相關軟體 root localhost yum install y net tools.x86 64 libaio.x...
第二天 第二章 實戰
一 模擬充值 jin e input print 充值成功,您本次充值 s元 jin e 二 繪製石頭怪 print 三 根據父母身高測兒子身高 兒子身高 父親身高 母親身高 0.54 father height float input 請輸入父親的身高 mother height float in...