您的位置:首页 > 其它

lsof命令

2016-03-16 10:16 225 查看
UPDATE rs
SET 转正时间 =
(SELECT TOP 1 zz.转正时间
FROM zz
WHERE zz.序号 = rs.管理号)

update design_file set type = '物料' where type is NULL or type=''

update stock_cell inner join design_file on stock_cell.product_id = design_file.product_id set stock_cell.first_kind_ID=design_file.first_kind_ID,stock_cell.first_kind_name=design_file.first_kind_name,stock_cell.second_kind_ID=design_file.second_kind_ID,stock_cell.second_kind_name=design_file.second_kind_name,stock_cell.third_kind_ID=design_file.third_kind_ID,stock_cell.third_kind_name=design_file.third_kind_name,stock_cell.product_name=design_file.product_name,stock_cell.type=design_file.type

update stock_balance inner join design_file on stock_balance.product_id = design_file.product_id set stock_balance.first_kind_ID=design_file.first_kind_ID,stock_balance.first_kind_name=design_file.first_kind_name,stock_balance.second_kind_ID=design_file.second_kind_ID,stock_balance.second_kind_name=design_file.second_kind_name,stock_balance.third_kind_ID=design_file.third_kind_ID,stock_balance.third_kind_name=design_file.third_kind_name,stock_balance.product_name=design_file.product_name,stock_balance.type=design_file.type

update stock_balance_details inner join design_file on stock_balance_details.product_id = design_file.product_id set stock_balance_details.first_kind_ID=design_file.first_kind_ID,stock_balance_details.first_kind_name=design_file.first_kind_name,stock_balance_details.second_kind_ID=design_file.second_kind_ID,stock_balance_details.second_kind_name=design_file.second_kind_name,stock_balance_details.third_kind_ID=design_file.third_kind_ID,stock_balance_details.third_kind_name=design_file.third_kind_name,stock_balance_details.product_name=design_file.product_name,stock_balance_details.type=design_file.type
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: