SQLServerLog.com - Database Tips, Techniques and Tutorials

0

SQL Server Recovery Models Overview – Simple, Full, Bulk-logged

835viewsRecovery model plays very important role when it comes to data recovery or to minimise data loss. You need excellent understanding of your business requirements and importance of data. Depending on scenarios you have to decide whether you...

0

SELECT DISTINCT Statement

DISTINCT clause is used to remove the duplicate records from result set, The DISTINCT clause is used only with SELECT statement. Syntax SELECT DISTINCT [ColumnNames] FROM TableName We will start with an example, we...