sql >> Database >  >> RDS >> Mysql

java mysql aantal rijen tellen

Probeer onderstaande code

 public int num() throws Exception {
 try {
 // This will load the MySQL driver, each DB has its own driver
 Class.forName("com.mysql.jdbc.Driver");
 // Setup the connection with the DB
 connect = DriverManager.getConnection("jdbc:mysql://localhost/testdb?"
 + "user=root&password=");

 // Statements allow to issue SQL queries to the database
 statement = connect.createStatement();
 resultSet = statement.executeQuery("select count(*) from testdb.emg");

 while (resultSet.next()) {
 return resultSet.getInt(1);
 }
} catch (Exception e) {
}

Hieronder waren fout

  1. public void num() throws Exception {

    zou moeten zijn

    public int num() throws Exception {

  2. Voor het tellen van totale rijen moet u de query select count(*) from testdb.emg gebruiken

Laat het me weten in het geval van een probleem.



  1. Invoegen in één tabelbasis op samenvoegresultaat van 2 andere tabellen

  2. Verschillende manieren om het schema en de gegevens van SQL Server-tabellen te vergelijken

  3. SQL om een ​​lijst met getallen van 1 tot 100 te genereren

  4. Gegevens in een MySQL-tabel overschrijven