Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图找出雇用员工的日期。使用普通的 SQL 语言会有所帮助
尝试:
to_char(the_date_field,'d')
这将返回一个 1-7 的值,代表星期几。
或者
to_char(the_date_field,'Day')
返回日期名称。
假设数据库中有一个雇佣日期。您应该知道表的正确名称和表中的字段。如果字段位于不同的表中,您将需要对多个表执行“连接”查询。
从 table_name 中选择employee_name、hire_date,其中employee_number = 99999999 进行浏览访问;