MySQL的查詢操作

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