Create a simple view
SQL
Easy
0 views
Problem Description
Create view v_customer_basic showing customer_id, name, city.
Output Format
View created
Sample Test Case
Input:
Customers(customer_id, name, city, phone)
Official Solution
CREATE VIEW v_customer_basic AS SELECT customer_id, name, city FROM Customers;
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!