MS SQL & T-SQL

MS SQL & T-SQL Anyone got resources for learning these?
3 Replies
Martin
Martin2mo ago
Tutorials for SQL Server - SQL Server
Use these SQL Server tutorials to learn new technologies and features. Tutorials for earlier versions of SQL Server usually work with more recent versions.
serters
serters2mo ago
How different is it from base sql?
Martin
Martin2mo ago
I believe this is Microsoft's implementation of SQL so you should expect to see T-SQL syntax. But I think the core SQL concepts can also be obtained from there. Example: Fetching data in SQL remains the same
select * from table;
select * from table;