周次

W6

W7

W8

W10

W11

W6


SELECT name FROM testdb.new_table;

SELECT name FROM testdb.new_table where id = 2;

select product_id, product_name from product;
select * from product;

select *, product_name as ProductName from product;

SELECT name FROM testdb.customer where membertype_id = 2;
SELECT * FROM testdb.customer where id != 3;

SELECT * FROM testdb.product where price < 200;
SELECT * FROM testdb.product where stock = '';

customer.csv

product.csv

W7


CHP_2: SELECT 基礎查詢