iT邦幫忙

純真的人 的所有回答 577

SQL 一欄變多欄

不考慮color自由變動~若固定顏色如下~ declare @Tmp table( Number nvarchar(10) ,color nvarchar(...

2022-11-17 ‧ 由 what0208 提問

SQL分析字串開頭

恩? select 原始資料 ,地區資料 from ( select 原始資料 ,地區資料 ,Row_Number()over(partition...

2022-11-16 ‧ 由 code707l33 提問

SQL合併兩個表格的問題

@@".....用慣用SQL declare @data table( c_no varchar(50) ,years int ,mon int...

2022-11-04 ‧ 由 lsesroom 提問

MSSQL Set IDENTITY_INSERT 設置為 ON 使用Insert into 的所有欄位

如果你欄位順序位置、數量正確~以下是可以的~ set identity_insert dbo.b ON; INSERT INTO dbo.b SELECT *...

2022-11-03 ‧ 由 cake955214 提問

請問MySQL 怎麼實作類似LINE POINT規則的點數

恩..關於點數~我都是每次異動就會update紀錄在一個欄位(目前點數)~原因當歷史累積可觀的筆數後~查詢速度整個掉下來@@... 哈~先幫你建檔~ creat...

2022-11-02 ‧ 由 biscuit 提問

趣味SQL之SQLite insert with case condition

關於原po問題~我都是用exists方式判斷~無資料才新增@@...或者有資料新增失敗也是可以記錄~ insert into t1030 select 001...

ASP.NET CORE MVC 顯示PDF Form

嗯...因為我習慣只看原始碼在寫...而且是VB語系~跟你C#語系不一樣吧~所以你就參考看看我的圖片解說@@ 首先要在Server產生~先去網路下載一個wkht...

2022-10-28 ‧ 由 Jay 提問

SQL新手求救,MS SQL語法的IN用法

拆兩段試試@@... declare @Tmp table( [SID] nvarchar(50), [DIP IP] nvarchar(50), [SI...

2022-10-17 ‧ 由 皓皓 提問

MS SQL 字串轉日期時間

@@.. 七位數 declare @o_date varchar(7) = '1100101' select Convert(datetime,Convert(...

2022-10-13 ‧ 由 XYZ 提問

SQL語法問題。從B表單的複數欄位作為條件,去篩選掉A表單的幾筆資料。

就用Exists select * from a where not Exists( select 0 from b where a.year = b.y...

2022-08-04 ‧ 由 lsesroom 提問