Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
SQL 関数は Connect AI のクエリ API に実装されています。そのため、これらの関数はすべてのデータソースで同じ一貫した API として利用できます。利用可能な関数のカテゴリは、文字列、日付、および数学の 3 種類です。
SELECT DATENAME(yy,GETDATE())
SELECT DATENAME('yy',GETDATE())
SELECT CONCAT(firstname, space(4), lastname) FROM Account WHERE Industry = 'Floppy Disks'
SELECT CURRENT_TIMESTAMP() FROM Account
SELECT RAND() FROM Account
SELECT MIN(AnnualRevenue), Name FROM Account WHERE Industry = 'Floppy Disks' GROUP BY Name
SELECT Name, Role, Earnings, COUNT() OVER (PARTITION BY Role) FROM Employees
SELECT A.ID, X.name FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/item') WITH (name VARCHAR(255)) AS X
SELECT CONCAT('Mr.', SPACE(2), firstname, SPACE(4), lastname) FROM Account
Was this page helpful?
Suggestions
Contact support