0

Is there any other example to understand keyword "as"

11th Jul 2016, 5:52 AM
pooja banga
2 Respuestas
+ 1
Ex: Table Name Student Table contains columns StudentID and StudentName Select StudentID, StudentName from Student ; result you see as: StudentID StudentName 1 x using As Keyword Select StudentID, StudentName as EmployeeName from Student ; then u see result as: StudentId EmployeeName 1 x
11th Jul 2016, 9:33 AM
Manu
+ 1
as keywords referencing alias name ... select ID as Employee_ID from emp
12th Jul 2016, 7:26 AM
srinivas T
srinivas T - avatar