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.
While ledger is a game-changer for security, SQL Server 2022 also introduced new functionality around Dynamic Data Masking (DDM), T-SQL enhancements and more.
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 ...