
查询
SELECT * FROM table;
SELECT column1,column2 FROM table;
SELECT DISTINCT column FROM table;
SELECT * FROM table WHERE id > 8; 其他符号(=、!=、>、<、>=、<=)
模糊查询
SELECT * FROM table where name LIKE 'Se_en'; 通配符(%)
SELECT * FROM table WHERE name LIKE '%man%';
select * from movies where name between 'A' and 'J';
select * from mov...