summaryrefslogtreecommitdiff
path: root/tests/examplefiles/tsql_example.sql
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2016-05-31 17:50:56 -0700
committerTim Hatch <tim@timhatch.com>2016-05-31 17:50:56 -0700
commit3aab2cf6b9a8502c0c04f20992dd1330e565bf7e (patch)
tree8e78d941d69b62dd2884c32bbaba52baa2fc6d1b /tests/examplefiles/tsql_example.sql
parenta0006c636c7db5d2333ba2e91a75e3da377b6efb (diff)
parent9be7169467e3ab7b3e1fa9b3e4b310786e6a6366 (diff)
downloadpygments-git-3aab2cf6b9a8502c0c04f20992dd1330e565bf7e.tar.gz
Merge mjem/pygments-main (Pull Request #588)
Diffstat (limited to 'tests/examplefiles/tsql_example.sql')
-rw-r--r--tests/examplefiles/tsql_example.sql72
1 files changed, 72 insertions, 0 deletions
diff --git a/tests/examplefiles/tsql_example.sql b/tests/examplefiles/tsql_example.sql
new file mode 100644
index 00000000..cbd76091
--- /dev/null
+++ b/tests/examplefiles/tsql_example.sql
@@ -0,0 +1,72 @@
+-- Example Transact-SQL file.
+
+-- Single line comment
+/* A comment
+ * spawning two lines. */
+ /* An indented comment
+ * spawning multiple
+ * lines. */
+/* A /* nested */ comment. */
+
+select
+ left(emp.firstname, 1) + '.' + [emp.surname] as "Name",
+ dep.name as [Department]
+into
+ #temp_employee
+from
+ employee as emp
+ inner join department as dep on
+ dep.ident_code = emp.department_id
+where
+ emp.date_of_birth >= '1990-01-01';
+go
+
+declare @TextToFind nvarchar(100) = N'some
+text across
+multiple lines';
+
+set @TextToFind varchar(32) = 'hello' + ' world';
+set @TextTiFind += '!';
+
+declare @Count int = 17 * (3 - 5);
+
+delete from
+ [server].[database].[schema].[table]
+where
+ [Text] = @TextToFind and author Not LIKE '%some%';
+
+goto overthere;
+overthere:
+
+select
+ 123 as "int 1",
+ +123 as "int 2",
+ -123 as "int 3",
+ 0x20 as "hex int",
+ 123.45 as "float 1",
+ -1.23e45 as "float 2"
+ +1.23E+45 as "float 3",
+ -1.23e-45 as "float 4",
+ 1. as "float 5",
+ .1 as "float 6",
+ 1.e2 as "float 7",
+ .1e2 as "float 8";
+
+Select @@Error, $PARTITion.RangePF1(10);
+
+select top 3 Ähnliches from Müll;
+
+-- Example transaction
+BEGIN TRAN
+
+BEGIN TRY
+ INSERT INTO #temp_employe(Name, Department) VALUES ('L. Miller', 'Sales')
+ iNsErT inTO #temp_employe(Name, Department) VaLuEs ('M. Webster', 'Helpdesk')
+ COMMIT TRAN
+END TRY
+BEGIN CATCH
+ print 'cannot perform transaction; rolling back';
+ ROLLBACK TRAN
+END CATCH
+
+-- Comment at end without newline. \ No newline at end of file