The AdventureWorks database is a sample database helpful for those who are new and learning relational database management system. Sample database contains database objects like the tables, stored procedures, function, triggers, indexes and sample data. Whenever a new version of SQL Server released, those newly added features will be added to Sample Database.
Sunday, 6 August 2017
Sunday, August 06, 2017
Setup AdventureWorks Database in Microsoft SQL Server 2014
Wednesday, 2 August 2017
Wednesday, August 02, 2017
FizzBuzz in C#
“FizzBuzz” is an interview question asked during interviews to check logical skills of developers.
For Demonstration, we will print number starting from 1 to 100. When a number is multiple of three, print “Fizz” instead of a number on the console and if multiple of five then print “Buzz” on the console. For numbers which are multiple of three as well five, print “FizzBuzz” on the console.
For Demonstration, we will print number starting from 1 to 100. When a number is multiple of three, print “Fizz” instead of a number on the console and if multiple of five then print “Buzz” on the console. For numbers which are multiple of three as well five, print “FizzBuzz” on the console.