Using Aliases : Alias : Select Clause SQL / MySQL


SQL / MySQL » Select Clause » Alias »

 

Using Aliases



/*
mysql> /* Prepare the data */
mysql> DROP TABLE Student;
Query OK, rows affected (0.03 sec)

mysql> CREATE TABLE Student (
    ->    StudentID INT NOT NULL PRIMARY KEY,
    ->    Name      VARCHAR(50NOT NULL
    -> )TYPE = InnoDB;
Query OK, rows affected, warning (0.10 sec)

mysql> /* Insert data for testing */
mysql> INSERT INTO Student (StudentID,NameVALUES (1,'Joe Yin');
Query OK, row affected (0.05 sec)

mysql> INSERT INTO Student (StudentID,NameVALUES (2,'Cory But');
Query OK, row affected (0.04 sec)

mysql> INSERT INTO Student (StudentID,NameVALUES (3,'JJ Harvests');
Query OK, row affected (0.05 sec)

mysql> /* Real command */
mysql> SELECT Name AS StudentName, StudentID AS ID FROM Student;
+-------------+----+
| StudentName | ID |
+-------------+----+
| Joe Yin     |  |
| Cory But    |  |
| JJ Harvests |  |
+-------------+----+
rows in set (0.00 sec)


*/

/* Prepare the data */
DROP TABLE Student;

CREATE TABLE Student (
   StudentID INT NOT NULL PRIMARY KEY,
   Name      VARCHAR(50NOT NULL
)TYPE = InnoDB;


/* Insert data for testing */
INSERT INTO Student (StudentID,NameVALUES (1,'Joe Yin');
INSERT INTO Student (StudentID,NameVALUES (2,'Cory But');
INSERT INTO Student (StudentID,NameVALUES (3,'JJ Harvests');
  
/* Real command */
SELECT Name AS StudentName, StudentID AS ID FROM Student;
           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

SQL / MySQL

 Navioo Select Clause
» Alias