摘要: 方法1 先猜表名 And (Select count(*) from 表名)<>0 猜列名 And (Select count(列名) from 表名)<>0 或者也可以这样 and exists (select * from 表名) and exists (select 列名 from 表名) 返 阅读全文
posted @ 2019-08-11 15:42 Aluosen 阅读(2638) 评论(0) 推荐(0)