#純靠北工程師4ha
----------
業界就是有一些小屁孩在爭論PK用uuid好還是用auto increment int 好,我他媽當然知道這個專案用uuid好,但是客戶堅持要auto increment int ,那你還在靠北三小?
然後還在爭論上下行電文用json好還是xml好,我他媽當然知道這個專案用json好,但是客戶堅持要用xml,那你還在靠北三小?
還能爭論資料庫用MongoDB好還是SQL server 好,我他媽當然知道這個專用SQL server好,但是客戶堅持要用MongoDB,那你還在靠北三小?
軟體業界就是有一堆自以為是的大神,以技術好講話就大聲,但是其他能力都是屁孩等級,才會把台灣軟體業界搞成這副德性。
永遠不要跟客戶的錢過不去,懂?
----------
🗳️ [群眾審核] https://kaobei.engineer/cards/review
👉 [GitHub Repo] https://github.com/init-engineer/init.engineer
📢 [匿名發文] https://kaobei.engineer/cards/create
🥙 [全平台留言] https://kaobei.engineer/cards/show/5806
同時也有1部Youtube影片,追蹤數超過12萬的網紅prasertcbs,也在其Youtube影片中提到,script สำหรับสร้างตาราง sales; drop table if exists sales; create table sales ( branch text, dt date, revenue int, primary key (bra...
「sql int」的推薦目錄:
- 關於sql int 在 純靠北工程師 Facebook 的最讚貼文
- 關於sql int 在 軟體廚房 Facebook 的精選貼文
- 關於sql int 在 軟體廚房 Facebook 的精選貼文
- 關於sql int 在 prasertcbs Youtube 的最佳解答
- 關於sql int 在 how to set maximum length to int data type in sql - Stack ... 的評價
- 關於sql int 在 SQL SERVER : Int Vs BigInt - YouTube 的評價
- 關於sql int 在 【MS SQL】主索引鍵及外部索引鍵(PK & FK) | 伍夜黃昏之時 的評價
- 關於sql int 在 Will SQL Server "int" datatype reliably truncate (and not round ... 的評價
sql int 在 軟體廚房 Facebook 的精選貼文
在 SQL Server 中無論是在 WHERE 或是 JOIN ON 用來做為條件的參數「型態」,最好要一模一樣,今天早上就遇到了一個跑到不良執行計劃的案例。
Y.ID 跟 nrs.NxxxId,一個是 INT,一個 BIGINT,當我不針對 Y.ID 強制轉型為 BIGINT 時,可以看到它實際資料列數目高達 281114202 筆,比我家電話號碼還長,把 Y.ID 強制轉型為 BIGINT 之後,實際資料列數目降到 84027。
總結來說,SQL Server 的資料欄位型態是需要嚴謹的定義,不能把可以相容的兩種欄位型態看成是一樣的,像是 varchar、nvarchar 也很容易被當成是同種類的型態拿來做條件比較,執行計劃產生器可不這樣認為,所以拿來當成條件的欄位型態最好一定要一模一樣。
最後附上 varchar、nvarchar 的案例:https://dotblogs.com.tw/supershowwei/2019/08/12/232213
sql int 在 軟體廚房 Facebook 的精選貼文
我們是否也被混餚了?
SQL Server 的 float 其實是雙精度,real 是單精度。
還有,如果我們以為 float 與 double 的關係就像 int 跟 long,那我們可能會有處理不完的小數點問題。
https://dotblogs.com.tw/supershowwei/2019/11/04/164633
sql int 在 prasertcbs Youtube 的最佳解答
script สำหรับสร้างตาราง sales;
drop table if exists sales;
create table sales (
branch text,
dt date,
revenue int,
primary key (branch, dt)
);
insert into sales
select 'bangkok' branch, dt::date, (10000 + random() * 20000)::int revenue
from generate_series('2018-01-01'::date, '2019-12-31'::date, '1 day') dt
UNION
select 'phuket' branch, dt::date, (10000 + random() * 10000)::int revenue
from generate_series('2018-01-01'::date, '2019-12-31'::date, '1 day') dt
order by branch, dt;
ดาวน์โหลด PostgreSQL script ไฟล์ที่ใช้ในคลิปได้ที่ ► http://bit.ly/2mdDVmm
ดาวน์โหลด saturn database (saturn.tar) ได้ที่ ► http://bit.ly/2E2uY7a
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
สอน PostgreSQL ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGi_NqmIu43B-PsxA0wtnyH
สอน MySQL ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFmJDsZipFCrY6L-0RrBYLT
สอน Microsoft SQL Server 2012, 2014, 2016, 2017 ► https://www.youtube.com/playlist?list=PLoTScYm9O0GH8gYuxpp-jqu5Blc7KbQVn
สอน SQLite ► https://www.youtube.com/playlist?list=PLoTScYm9O0GHjYJA4pfG38M5BcrWKf5s2
สอน SQL สำหรับ Data Science ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGq8M6HO8xrpkaRhvEBsQhw
การเชื่อมต่อกับฐานข้อมูล (SQL Server, MySQL, SQLite) ด้วย Python ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEdZtHwU3t9k3dBAlxYoq59
การใช้ Excel ในการทำงานร่วมกับกับฐานข้อมูล (SQL Server, MySQL, Access) ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGA2sSqNRSXlw0OYuCfDwYk
#prasertcbs_SQL #prasertcbs #prasertcbs_PostgreSQL
sql int 在 【MS SQL】主索引鍵及外部索引鍵(PK & FK) | 伍夜黃昏之時 的推薦與評價
什麼樣的資料行不適合做為Primary Key? Primary Key 不是第一個資料行就可以作為主索引鍵,也不是Data Type 為int 或數值或特定編碼格式就 ... ... <看更多>
sql int 在 how to set maximum length to int data type in sql - Stack ... 的推薦與評價
... <看更多>