Wednesday, 15 November 2017
Show Current Date-
Show Current Date Then Use-
SELECT GETDATE() AS CurrentDate
OutPut-
2016-06-08 12:11:00.083
More Format In Date Then Use-
Ex. 1:
SELECT CONVERT(varchar(20),GETDATE(),100) AS CurrentDate
OutPut-
...
Monday, 16 October 2017
Except vs NotNull in Sql Server
EXCEPT & INTERSECT command in SQL Server
EXCEPT
In this Article EXCEPT command use to commind two queries and find dinctinct records.
EXCEPT returns any left query values which are not exist in right query.
You can use Except command and easily find distinct value of one table when you want filter...
Sunday, 1 October 2017
Sql Commands
Sql Select Query
SQL Select all data from Table as you can see in my previous Article
http://learningmvctutorial.blogspot.in/2017/03/sql-select.html
Insert Query
In SQL Server you can use Insert data in table help of Insert Query
Syntax
INSERT INTO TableName(ColumnName1,ColumnName2,ColumnName3) VALUES(@value1,@value2,@value3)
...
Sunday, 24 September 2017
Thursday, 21 September 2017
Html Formatting
Text Editing
You can edit text easly in html using many predefine tags.
HTML also defines special elements and tags for defining text with a special meaning.
Using those type of Formatting elements like-
<b> - Use this element to bold text
<strong> - This is also same bold tag but give Important text
<i> - Use...
Wednesday, 20 September 2017
Friday, 11 August 2017
Saturday, 8 July 2017
HTML Basic Important Points
HTML Basic Document
In this Article Define Html Basics tag then you find easily that where we use.
In this Define basics tag in follow example
Example
<html/>
<head/>
<title/>Demo Title</title>
</head/>
<body/>
Demo you can write code
</body>
</html>
Text Elements
In This Article...
Thursday, 18 May 2017
CSS Selectors
In this artical we define differntes types of selector see as above-
What is Selector?
Selector-CSS type selectors match elements by node name. Selector for
a particular node name selects all
elements of that type — that is, with that node name — in the document.
andwe can define a selector is element which on we apply css propeties.
...
Saturday, 13 May 2017
Types of CSS
In this Tutorial Describe Types of CSS Basically we define 3 types of CSS see above-
Inline CSS
Internal (embedded) CSS
External CSS
Inline CSS -
In This CSS we add inline style.
Inline styles are styles that are written directly in the tag like div,textbox button etc. Inline
styles affect only the tag they are applied to and not effect other...
Saturday, 6 May 2017
Ordered and Unordered list in Html
Types of list in html
We define any defination and content in list form then we give order and unorder.
Basically 3 types of list use in-
Unorder list
Order list
Defination list
Unordered list
An unordered The list items are marked with bullets (typically small black
circles). An unordered list is a list of items.
This list...
Sunday, 30 April 2017
Operator in JavaScript
What is an operator?
JavaScript has both binary and unary operators, and one special ternary operator, the conditional operator. A binary operator requires two operands, one before the operator and one after the operator:
operand1 operator operand2
For example, 3+4 or x*y.
A unary operator requires a single operand, either before or...
Saturday, 22 April 2017
Conditional Statements in JavaScript
Conditional Statements
In This Tutorial You want to perform different actions for different situvation.
In JavaScript we have the following conditional statements:
if statement .
if-else statement .
if...else if....else statement.
switch statement.
if statement - If statement if you want to execute some code only if a specified
...