翻訳と辞書
Words near each other
・ Trans-Tasman Cup
・ Trans-Tasman Travel Arrangement
・ Trans-Tasman Trophy
・ Trans-Texas
・ Trans-Texas Corridor
・ Trans-tubular potassium gradient
・ Trans-umbilical breast augmentation
・ Trans-X
・ Trans-zeatin O-beta-D-glucosyltransferase
・ TRANS.TBL
・ Trans7
・ Transa
・ Transa (album)
・ Transacqua
・ TransACT
Transact-SQL
・ Transactinide element
・ Transaction
・ Transaction account
・ Transaction Advisors
・ Transaction Application Language
・ Transaction authentication
・ Transaction authentication number
・ Transaction banking
・ Transaction Capabilities Application Part
・ Transaction Control Language
・ Transaction cost
・ Transaction data
・ Transaction de Novo
・ Transaction deposit


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Transact-SQL : ウィキペディア英語版
Transact-SQL

Transact-SQL (T-SQL) is Microsoft's and Sybase's proprietary extension to SQL. SQL, the acronym for Structured Query Language, is a standardized computer language that was originally developed by IBM for querying, altering and defining relational databases, using declarative statements. T-SQL expands on the SQL standard to include procedural programming, local variables, various support functions for string processing, date processing, mathematics, etc. and changes to the DELETE and UPDATE statements.
These additional features make Transact-SQL Turing complete.
Transact-SQL is central to using Microsoft SQL Server. All applications that communicate with an instance of SQL Server do so by sending Transact-SQL statements to the server, regardless of the user interface of the application.
==Variables==
Transact-SQL provides the following statements to declare and set local variables: DECLARE, SET and SELECT.

DECLARE @var1 NVARCHAR(30)
SET @var1 = 'Some Name'
SELECT @var1 = Name
FROM Sales.Store
WHERE CustomerID = 1000


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Transact-SQL」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.