08 Apr How to select records in MySQL (SELECT Statement)
Learn how to select records from a column in MySQL. Use the SELECT statement to fetch records from any column:
1 2 3 4 5 6 7 8 9 10 11 |
SELECT * FROM EMPLOYEE; SELECT EmpID FROM EMPLOYEE; SELECT LastName FROM EMPLOYEE; SELECT EmpAGE, EmpZONE FROM EMPLOYEE; SELECT EmpID, FirstName, LastName FROM EMPLOYEE; |
Video Tutorial – SELECT Statement
If you liked the tutorial, spread the word and share the link and our website Studyopedia with others:
Support us: DONATE
Read More:
No Comments