sql語句錯誤

破玉發表於2016-04-12

1.今天在使用count(*)時報錯:

原sql語句:

String sql="select count  (*) from customer";

改正後:

String sql = "select count(*) from customer";

注意:count與(*)之間不要有空格

 

相關文章