select slug, fullname, website_url, status, kline, spot, futures from t_markets
insert into t_markets
slug,
fullname,
website_url,
status,
kline,
spot,
futures,
#{slug},
#{fullname},
#{websiteUrl},
#{status},
#{kline},
#{spot},
#{futures},
update t_markets
fullname = #{fullname},
website_url = #{websiteUrl},
status = #{status},
kline = #{kline},
spot = #{spot},
futures = #{futures},
where slug = #{slug}
delete from t_markets where slug = #{slug}
delete from t_markets where slug in
#{slug}