Course Resources

Search

Search IconIcon to open search

Last updated Nov 17, 2024

# Advanced Querying - Column Aliasing

# Practice Questions

Use the magic store database for the following queries.

  1. Write a query to show all products that cost more than 1 and less than 100. Display the product name, the product’s supplier name and the product’s price. Rename the price column as “Price (USD)”, product name column as “Product Name” and the supplier name column as “Supplier Name”.

Expected results:

# Lessons