MySQL的查詢操做

1. 基礎的查詢操做 #簡單查詢 select * from emp; //查詢emp中全部的記錄 select empno, job,ename from emp; //查詢emp表中的某些字段 select ename as 名字 from emp; //使用字段別名 去重 distinctsql select distinct deotno from emp; //去除重複的行(針
相關文章
相關標籤/搜索