sql >> Database teknologi >  >> RDS >> Mysql

java mysql antal rækker

Prøv nedenstående kode

 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) {
}

Nedenfor var fejl

  1. public void num() throws Exception {

    burde være

    public int num() throws Exception {

  2. For at tælle samlede rækker skal du bruge forespørgslen select count(*) from testdb.emg

Fortæl mig, hvis der er problemer.



  1. Opdel posterne i to kolonner

  2. Sådan opretter du historik ELLER reviderer visninger fra Change Data Capture (CDC) tabeller i SQL Server - SQL Server Tutorial

  3. Sådan vælger du den første række i hver gruppe efter gruppe

  4. Gennemgang:Opsætning af SQL Server High Availability