摘要:
查询字段超过50的表名 select table_name as 表名,count(column_name) as 表的总列数 from information_schema.columns N join sys.sysobjects M on N.TABLE_NAME=M.name where M 阅读全文
摘要:
需求: 1.P1、P2、P3、P6、P7工厂最高版本订单 2.区分是否为光电板或者是否为槽孔 3.钻孔工时的计算时间为2020年6月6号前(不包含6月6号) SQL: drop table #temp2 drop table #temp3 drop table #temp4declare @fact 阅读全文