摘要: select * from temp_supp_goods where goods_name regexp '[0-9]'; select * from temp_supp_goods where goods_name regexp '元' 阅读全文
posted @ 2019-08-15 11:17 wyuioahxvm 阅读(546) 评论(0) 推荐(0)
摘要: 已知table表的行数是6; 1.select count(*) from table; 返回的是table表的行数 2.select count(1) from table; 返回的是table表的行数 3.select count(column) from table; count其中的一列,返 阅读全文
posted @ 2019-08-15 10:43 wyuioahxvm 阅读(142) 评论(0) 推荐(0)