This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
以下是一些 SQL SERVER 2005 的相關網頁 MS 一系列的 SQL 2005 商業智慧 Webcast,4 大學院 (Data Mining、OLAP、Reporting、SSIS),20 門線上教學課程,免費的,有興趣
的快來看看! http://www.microsoft.com/taiwan/events/magic/ 介紹 SQL server 2005 新增功能 http://www.netscum.dk/taiwan/sql/prodinfo/overview/whats-new-insqlserver2005.mspx 而學習 SQL server 2005 最好是看看他本身的線上叢書
1. 建立欄位 2.定義資料類型 3. 定義(欄位)資料型態 4.
<SQL 查詢步驟的指令> EX: 例如要從學生資料中,搜尋出<住在台中>的同學 Step: 1. Select* student= 搜尋全部的學生 2. From student = 表示從學生這個(欄位)中 3. Where(此為關聯條件) Addr. Like “台中”= 指令要求檢所出所有含有”台 中”條件的學生。But, 會出現的問題是: 所檢所出的條件不見得為我們要求 的<台中縣市>條件,所以檢索指令應調整為: Where Addr. Like “台中市 ” or Where Addr. Like “台中縣”