0
A
回答
1
--Create the table on the fly with the condition stated
SELECT
TEAM_NAME,
RACES_COMPETED
INTO [TOP TEAMS]
FROM YourTable
WHERE RACES_COMPETED >= 500 and RACES_COMPETED <= 900
--Store the number of teams in the new table in a variable for ease of use
DECLARE @topTeams INT
SET @topTeams = (SELECT COUNT(*) FROM [TOP TEAMS])
--If there are teams in the table, print the number of teams. If there aren't any, print the other statment
IF @topTeams > 0
BEGIN
SELECT 'NO. OF TOP TEAMS: ' + CAST(@topTeams AS VARCHAR)
END
ELSE
BEGIN
SELECT 'NO TOP TEAMS EXIST'
END
是使用TEMP TALBE的相同代碼
--Drop the TEMP TABLE if it exists
IF OBJECT_ID('tempdb..#TOP_TEAMS') IS NOT NULL DROP TABLE #TOP_TEAMS
--Create the table on the fly with the condition stated
SELECT
TEAM_NAME,
RACES_COMPETED
INTO #TOP_TEAMS
FROM YourTable
WHERE RACES_COMPETED >= 500 and RACES_COMPETED <= 900
--Store the number of teams in the new table in a variable for ease of use
DECLARE @topTeams INT
SET @topTeams = (SELECT COUNT(*) FROM #TOP_TEAMS)
--If there are teams in the table, print the number of teams. If there aren't any, print the other statment
IF @topTeams > 0
BEGIN
SELECT 'NO. OF TOP TEAMS: ' + CAST(@topTeams AS VARCHAR)
END
ELSE
BEGIN
SELECT 'NO TOP TEAMS EXIST'
END
+1
非常感謝。非常感謝 –
相關問題
- 1. 創建if語句
- 2. 隱藏表單並使用if語句
- 3. ASP.NET if語句創建div
- 4. 創建複查if語句
- 5. 使用嵌套if語句創建公式創建
- 6. 在if語句中使用if語句的建議
- 7. 用if語句創建對象
- 8. 創建一個if語句用CSS
- 9. 使用if ... else if ... else語句創建一個向量R
- 10. 使用if if語句檢查列表
- 11. 如何使用if語句創建表格來求和值並評估結果?
- 12. 使用if語句
- 13. 使用「if語句」
- 14. 使用if語句
- 15. 使用if語句
- 16. 使用if語句
- 17. 使用if語句
- 18. MySQL IF語句程序創建錯誤
- 19. geoTest函數 - 創建if/else語句
- 20. 你如何創建多個「if」語句?
- 21. 創建一個if語句變量
- 22. 在IF語句中創建變量
- 23. 在WHMCS中創建{if}語句
- 24. 創建if語句與浮動
- 25. 創建優雅的if語句
- 26. 爲datagrid值創建一個IF語句
- 27. 在if語句中創建一個'或'
- 28. 在登錄時創建if語句?
- 29. 在C++中創建if else語句
- 30. 在if/else語句中創建循環
讓我先說這不是現實世界的情景,但我想他們試圖讓你應用不同的概念。你對這個問題的理解有什麼困難?簡而言之,他們要求您獲取RACES_COMPLETED在500到900之間的所有行,這是一條基本的SELECT語句。你對SQL Server有什麼經驗? – bassrek
沒有太先進,但我理解得很好 –
我認爲有人希望您使用SQL Server Management Studio將某些行選入臨時表中。打印消息需要另一個SQL語句。還有其他的可能性。 –