1.今天在使用count(*)時報錯:
原sql語句:
String sql="select count (*) from customer";
改正後:
String sql = "select count(*) from customer";
注意:count與(*)之間不要有空格
1.今天在使用count(*)時報錯:
原sql語句:
String sql="select count (*) from customer";
改正後:
String sql = "select count(*) from customer";
注意:count與(*)之間不要有空格