In all of the chapters so far, you’ve learned how to view data from our database tables. You’ve learned how to choose the columns and rows you want to display using many different methods.
In this final chapter of Part II, we’ll look at two techniques you can use to improve your SQL queries and make them easier to write and easier to understand the results of. The first of these techniques is called a “table alias.”
What is a Table Alias?
A table alias is an alternative name you can apply to your table as part of your SQL query. This alias applies only to your ...