Tech News

SQL – Data Types?

SQL Server offers six categories of data types for your use: Exact Numeric Data Types: DATA TYPEFROMTO bigint-9,223,372,036,854,775,8089,223,372,036,854,775,807 int-2,147,483,6482,147,483,647 smallint-32,76832,767 tinyint0255 bit01 decimal-10^38 +110^38 -1...

Static Class

Static Class: Declared with Static keyword, methods in Static Class are also static along with variables of the class. This class cannot be instantiated, i.e...