資料庫學習初步學習

2021-09-25 23:17:27 字數 2529 閱讀 1530

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,url,alexa,country)

insert into web(name,url,alexa,country)

values('微博','',20,'cn')

insert into web(name,url,alexa,country)

values('facebook','',3,'usa')

select distinct country from web

select * from web

order by alexa

update web

set alexa=5000,country='usa'

where name='菜鳥教程';

delete from web

select*from web limit 2;

select*from web

where name like 'g%'

select*from web

where name like '%k'

select*from web

where name like '%oo%'

select*from web

where name not like '%oo%'

select * from web

where name like '_oogle'

select * from web

where name like 'g_o_le'

select * from web

where name regexp '^[gfs]'

select * from web

where name regexp '^[a-h]'

select * from web

where name regexp '^[^a-h]'

select * from web

where name in ('google','菜鳥教程')

select * from web

where alexa between 1 and 20

select * from web

where alexa not between 1 and 20

select * from web

where (alexa between 1 and 20)

and country not in ('usa', 'ind')

select * from web

where name between 'a' and 'h'

select name as n, country as c

from web

select name, concat(url, ', ', alexa, ', ', country) as site_info

from web

sql insert into 語句insert into 語句用於向表中插入新記錄

sql select distinct 語句

order by 關鍵字用於對結果集按照乙個列或者多個列進行排序。

order by 關鍵字預設按照公升序對記錄進行排序。如果需要按照降序對記錄進行排序,您可以使用 desc 關鍵字。

sql update 語句

update 語句用於更新表中已存在的記錄

sql select top, limit, rownum 子句

sql like 操作符

like 操作符用於在 where 子句中搜尋列中的指定模式

sql 萬用字元

萬用字元可用於替代字串中的任何其他字元。

在 sql 中,萬用字元與 sql like 操作符一起使用。

sql 萬用字元用於搜尋表中的資料。在 sql 中,可使用以下萬用字元:

in 操作符

in 操作符允許您在 where 子句中規定多個值。

sql between 操作符

between 操作符選取介於兩個值之間的資料範圍內的值。這些值可以是數值、文字或者日期

sql 別名

通過使用 sql,可以為表名稱或列名稱指定別名。

基本上,建立別名是為了讓列名稱的可讀性更強

資料庫初步學習

mysql資料庫基本操作 前段時間自學了資料庫的基本操作,寫點總結撒 一.資料庫檔案操作 1.建立資料庫檔案 create database 資料庫名稱 2.刪除資料庫檔案 drop database 資料庫名稱 3.顯示資料庫檔案 show databases 4.開啟資料庫檔案 use 資料庫名...

ORACLE資料庫初步學習

切到oracle資料庫檔案處 cd oracle home 重啟網路服務 systemctl restart network 檢視是否與pdb資料庫相通 tnsping pdb 檢視監聽狀態 lsnrctl status 啟動 lsnrctl start 統計磁碟下所有目錄占用空間,排序 du s ...

資料庫MYSQL的初步學習

資料庫的基本概念 1.資料庫的英文單詞 database 簡稱 db 2.什麼是資料庫?是乙個檔案系統 容器 用於儲存和管理資料的倉庫 3.資料庫的特點 持久化儲存資料 方便儲存和管理資料 使用了統一的方式操作 mysql服務 服務啟動 mysql登入 cmd mysql uroot proot c...