News

T-SQL Smarts -- Preventing Injection Attacks Working with dynamic SQL is all well and good, but avoid the risks that can lead to your code being susceptible to a SQL injection attack.
Part 1 of this article introduced four new T-SQL functions available in SQL Server 2012. Part 2 has the rest.
A comparison of Transact-SQL and languages supported by Microsoft's Common Language Runtime.
The mssql extension for Visual Studio Code, used to support SQL Server connections and T-SQL editing, has been updated with IntelliCode functionality and a new Object Explorer, among other new ...
TSQL: Creating a simple foreign key KwamiMatrix Nov 2, 2007 Jump to latest Follow Reply ...
I've got a products table that uses a next product id to allow versioning of products, e.g.:ID Model List NextID 1 A 1.00 2 2 A 2.00 3 3 B 2.50 4 4 B 3.00 NULLWhat would the best way of returning ...