溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

postgresql常用的sql語句分享

發(fā)布時間:2021-08-31 13:36:34 來源:億速云 閱讀:190 作者:chen 欄目:數(shù)據(jù)庫

這篇文章主要介紹“postgresql常用的sql語句分享”,在日常操作中,相信很多人在postgresql常用的sql語句分享問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”postgresql常用的sql語句分享”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

sql語句

15個常用的語句:
1.select relname,relpages from pg_class order by relpages desc
2.selecr pg_database_size('數(shù)據(jù)庫名')
3.select pg_size_pretty(pg_total_relation_size('表名‘))
4.\d 表名
5.create index name on table using index_type(colum)
6.rollback,commit
7.explain query
8.explain analyze query 
9.insert into number(num) values (generate_series(1,1000))
10.select count(*) from table ,select count(col_name) from table,
select count(distinct 列名) from table
11.slect MAX(num) from number_table where num < (select MAX(num) from number_table)
12.select MIN(col_name) from number_table where num >(select MIN(num) from number_table)
13.select typname,typlen from pg_type where typtype = 'b'
14.\g output_file,select * from table_name,\g
15.加密:select crypt('sathiys',gen_salt('md5'));
16.insert into WU(a1,b1) select generate_series(1,1000000),'aa';
17.select name,setting,short_desc from pg_settings where name like '%scan';

到此,關(guān)于“postgresql常用的sql語句分享”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI