2019年6月24日 星期一

(SQL)抽獎系統

https://www.fooish.com/sql/select-into.html

隨機抽取
select top 5 * from  [dbo].[Temp2] order by newid()


SELECT table_column1, table_column2, table_column3...
INTO new_table_name [IN another_database]
FROM table_name;
其中 new_table_name 為欲新建的資料表名稱,該資料表會自動建立,且不可與已經存在的資料表名稱相同;而 another_database 為至外部資料庫的路徑。

ps:
結合運用sql join 語法
https://dotblogs.com.tw/caubekimo/2010/07/28/16874

沒有留言:

張貼留言

WPF聊天室应用(ASP.NET Core SignalR)

  WPF聊天室应用(ASP.NET Core SignalR) https://www.bilibili.com/video/BV1Q741187Si?p=2 https://www.bilibili.com/video/BV1UV411e75T?from=search&...