mysql資料庫基本操作
前段時間自學了資料庫的基本操作,寫點總結撒:
一.資料庫檔案操作
1.建立資料庫檔案: create database 資料庫名稱;
2.刪除資料庫檔案: drop database 資料庫名稱;
3.顯示資料庫檔案: show databases;
4.開啟資料庫檔案: use 資料庫名稱;
看圖:
二.對錶的操作
1. 顯示資料庫中所有的表:show tables;
2. 建立一張表: create table 表名(變數1名 變數1型別,變數2名 變數2型別);
3. 顯示表中的資料資訊: desc 表名;
4. 刪除一張表: drop table 表名;
5. 給表插入乙個變數: alter table 表名 add 變數名 變數型別;
6. 給表中的變數賦值: insert into 表名 (變數1名,變數2名,變數3名) values(
變數1值,變數2值,變數3值);
7. 查詢表中的資料:
全部查詢(無條件查詢):select * from 表名;
指定乙個查詢條件: select * from 表名;
指定多個查詢條件: select * from
表名
where 變數1 = xx && 變數2=*** ;
8.更新資料: update 表名 set 變數1名=*** where 根據變數=***;
9. 刪除表中的資料:
全部刪除:delete from 表名;
按條件刪除:
delete from 表名 where
根據變數=***;
資料庫學習初步學習
select from web insert into web name,url,alexa,country values 13,cn insert into web name,url,alexa,country values 菜鳥教程 4689,cn insert into web name,ur...
ORACLE資料庫初步學習
切到oracle資料庫檔案處 cd oracle home 重啟網路服務 systemctl restart network 檢視是否與pdb資料庫相通 tnsping pdb 檢視監聽狀態 lsnrctl status 啟動 lsnrctl start 統計磁碟下所有目錄占用空間,排序 du s ...
資料庫初步
建立乙個表people,id列設為主鍵,且自動遞增 在mysql中,create people id int not null primary key auto increment,name varchar 20 varchar 20 在sql server中 create table people...