Friday, 31 March 2017
Stored Procedure in SQL Server can be defined as the set of logically group of SQL statement which are grouped to perform a specific task.
We Use stored procedure is that it increases the performance of the database.
stored procedures is that you can centralize data access logic into a single place that is then easy for DBA's to optimize. Stored...
Friday, 24 March 2017
Tuesday, 21 March 2017
Overview of CSS
What is CSS?
CSS stands for Cascading Style Sheets
CSS is used to describe the look and formatting of a document written in markup language. It provides an additional feature to HTML. It is generally used with HTML to change the style of web pages and user interfaces. It can also be used with any kind of XML documents including plain XML, SVG...
Overview of HTML
What is HTML?
First developed by Tim Berners-Lee in 1990. HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web. Each page contains a series of connections to other pages called hyperlinks. Every web page you see on the Internet is written using one version of HTML code or another.
HTML code ensures...
Friday, 17 March 2017
Thursday, 16 March 2017
Overview
SQL(Structured Query Language)
SQL is a language that interacts with the database on the server-side. This dynamite duo has changed the structure of the internet forever. Sure, programming languages like PHP, ASP, and ColdFusion made the internet dynamic, but the efficiency of SQL has revolutionized how user's interact with websites.
What...
Sunday, 5 March 2017
Saturday, 4 March 2017
How To Create DataBase & Table in SQL Server
We Create Database in SQL Server
Step 1. Firstly open Computer and Click on SQL Server then Create DataBase.
Step 1. Write Query of creation of Database in Sql Server like this-
Syntex
CREATE DATABASE DATABASE_NAME
Note- Here DATABASE_NAME is Created Database Name. Whatever u want to giveProper name
of Database
Ex.
CREATE DATABASE...
SQL Select
The SQL SELECT Statement
The SELECT statement is used to select data from a database.
SQL SELECT Syntax
SELECT column_name,column_name
FROM table_name;
Ex.
SELECT * FROM TABLE_NAME
Note - This Query select All data in table from database.
SQL SELECT DISTINCT
The SELECT DISTINCT statement is used to return only distinct (different) values.
In...