SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table address like sakila.address; insert into address select * from sakila.address; create table customer like sakila.customer; insert into customer select * from sakila.customer; create table city like sakila.city; insert into city select * from sakila.city; create table country like sakila.country; insert into country select * from sakila.country;; CREATE VIEW customer_address AS SELECT customer_id, first_name, last_name, address, city, country FROM customer, address, city, country ; select * from customer_address order by customer_id;

Stuck with a problem? Got Error? Ask ChatGPT!

Copy Clear