显示所有员工的姓名,入职的年份和月份 sql语句

2024-11-23 09:56:29
推荐回答(3个)
回答1:

select name,convert(varchar,datepart(yy,getdate())) year,convert(varchar,datepart(mm,getdate())) month from table1

getdate()换成你的时间类型字段名

回答2:

select name, year, month from table

回答3:

语句:
select 姓名,入职时间 from 表