Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You left out the where.

SELECT employee.name where role = 'developer'

Vs

SELECT staff.name” where role = 'developer'

Then the plural one reads better



I don't think it does, because `role` is an attribute of an employee.

   SELECT employee.Name
   FROM employee
   WHERE employee.Role = 'developer' 

reads much better to me than

   SELECT employees.Name
   FROM employees
   WHERE employees.Role = 'developer'




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: