模糊查詢(等值查詢)

select * from employees where first_name like 'S%' --查詢first_name 以S 開頭的員工 select * from employees where first_name like '%S' --查詢first_name 以S 結尾的員工   --查詢last_name 以M開頭並且第三個字母是u的員工 select * from emp
相關文章
相關標籤/搜索