Beginning T-SQL 2008

Welcome to Beginning T-SQL 2008. This book introduces you to the language known as T-SQL, also called Transact-SQL. It’s the fundamental language that you need to know in order to work productively with Microsoft’s database management system known as SQL Server. Almost everything that you do in S...

Mô tả đầy đủ

Đã lưu trong:
Chi tiết về thư mục
Tác giả chính: Kellenberger, Kathi
Định dạng: Sách
Ngôn ngữ:English
Được phát hành: Apress 2012
Những chủ đề:
Truy cập trực tuyến:http://scholar.dlu.edu.vn/thuvienso/handle/DLU123456789/30839
Các nhãn: Thêm thẻ
Không có thẻ, Là người đầu tiên thẻ bản ghi này!
Thư viện lưu trữ: Thư viện Trường Đại học Đà Lạt
Miêu tả
Tóm tắt:Welcome to Beginning T-SQL 2008. This book introduces you to the language known as T-SQL, also called Transact-SQL. It’s the fundamental language that you need to know in order to work productively with Microsoft’s database management system known as SQL Server. Almost everything that you do in SQL Server boils down to T-SQL commands, whether you write them yourself or whether a tool generates them for you. If you want to be successful in a career involving SQL Server, then it helps to master the underlying language. To whet your appetite and to give you an idea of what you’re in for, here is a simple example of a T-SQL statement. It’s a simple query to list all the databases hosted on SQL Server: SELECT name FROM sys.databases;