Software Testing

k2G9Eo9
RdZQRt6

Popular Posts

ALIAS

ALIAS Clause is used to give another Name to Table or Column. It's like a Shortener, by using Alias we can create a short form of the long or complex table name or column name.
The basic syntax is as follows:
SELECT column_Name FROM tables_Name AS Alias_Name
SELECT column_Name AS Alias_Name FROM tables_Name
Employee
Emp_idNameSurnameSalaryDept_id
1RajeshKhanna450002
2SnehaGupta550004
3SandeepNehte950001
4KirtiPatil250003
5NileshJadhav450003
6DipeshDas350005
7KailashRane620001
8KavitaDeshpande480003
9SanjayDatt500003
10ShrutiHasan780001

Department
Dept_idDept_NameLoc_id
1IT101
2EC108
3Support103
4Managment105
5LIC104
Syntax For SQL:
SELECT e.Name,d.Dept_Name,e.Dept_id
FROM employee AS e, department AS d
WHERE e.Dept_id=d.Dept_id
After Execute: 
NameDept_NameDept_id
SandeepIT1
KailashIT1
ShrutiIT1
RajeshEC2
DineshEC2
KirtiSupport3
NileshSupport3
KavitaSupport3
SanjaySupport3
SnehaManagement4

No comments:

Post a Comment