Sample is Null, Not, Between, and, in keywords // alter table employee add ( sal numeric ( 8 , 2 )) alter table employe...
Home / Posts filed under SQL Query
Showing posts with label SQL Query. Show all posts
Showing posts with label SQL Query. Show all posts
Thursday, 25 July 2019
Sample Like Function
Sample Like Function *Like Function select empid , empname , address , phno , salary , deptname , deptid from employee where em...
Wednesday, 6 December 2017
Create Date Time Function in SQL Server
*Create Date Time Function select getdate () as "Date" select getdate () as "Date" select CURREN...
Inner Join,Left Join, Right Join and Create View
*Inner Join select E . empid , E . empname , E . address , E . phno , E . salary , E . deptname , E . deptid from employee E inne...
Subscribe to:
Posts (Atom)
Labels
POPULAR POST
-
1. Program Structure in C++ A C++ program follows a well-defined structure. The basic components are: #include <iostream> using namesp...
-
Declaration of Variables in C++ A variable in C++ is a named memory location used to store data. Before using a variable, it must be decla...
-
Operators are special symbols that perform operations on variables and values. Example int a = 5 + 3; // '+' is an addition operato...