1.怎样把每个表中字段名称一样的字段的数据类型与长度修改为一样的
2.怎样查看View、stored procedure、Function的最后修改日期
谢谢
------解决方案--------------------
- SQL code
2.怎样查看View、stored procedure、Function的最后修改日期select name ,TYPE,type_desc,create_date ,modify_date from sys.objects where type ='v' or type ='p' or type ='FN'
------解决方案--------------------
------解决方案--------------------