iT邦幫忙

一級屠豬士 的所有留言 31

達標好文 [MS SQL] SQL 挑戰 - 排列組合和階層目錄 (使用 CTE 遞迴)

CREATE OR REPLACE FUNCTION f_combos(_arr anyarray) RETURNS TABLE (combo anyarr...

【SQL分享】如何在oracle找到前12個月連續四個月的平均消費金額

create table ithelp180902 ( id serial primary key , cts timestamp not null , c...

達標好文 [演算法][SQL]演算法挑戰系列(9)-Human Traffic of Stadium

既然是日期連續三天,我就把測試資料變動一下,id就跳動,以日期來作判斷. create table ithelp180702 ( id serial pri...

達標好文 資料庫之間"字母符號比較"測試

很棒的整理比較.補充一下關於大小寫部份資料,在一些情境下,大小寫分別不敏感是比較適合的.Postgresql提供了一個extension, 增加了新的資料型態,...

達標好文 [演算法][SQL]演算法挑戰系列(7)-Exchange Seats

create table ithelp180617 ( id serial primary key , student text not null );...

達標好文 【SQL分享】把多個欄位值轉成單個Unique的欄位

把資料加一組,ex6也放點資料. create table ithelp180602 ( id serial not null primary key ,...

Oracle SQL Developer 小技巧 #3 : 電腦當機、沒存檔救回之前編寫的SQL Script

老弟,這玩意叫 Oracle SQL Developer. 傳送門 不是大家都愛叫 XXX Studio的.

達標好文 [演算法][SQL]演算法挑戰系列(2)-Department Highest Salary

用Postgresql 來玩玩 create table dept ( id int not null primary key , name text no...

達標好文 [SQL Server] CTE RECURSIVE (遞迴)製作月曆

用Postgresql 輕鬆愉快多了. select dates from generate_series('2017-01-01 00:00:00'::t...