java里怎么返回mysql中元素的个数?
发布网友
发布时间:2022-04-20 19:53
我来回答
共5个回答
热心网友
时间:2023-11-04 17:40
写SQL的代码:select count(*) from 表
它返回的是查询出的结果
<例:return ***;>
Java代码:
写SQL的那个类名 替用名<例:b>=new 写SQL的那个类名();
int a=Integer.parseInt(b.执行count查询的方法<注:这里是那个方法返回的结果>); //这里的Integer.parseInt()是把字符串转换为整型
热心网友
时间:2023-11-04 17:40
select count(*) from 表名 查所有个数。
如果想根据什么条件查询就写
select count(字段名) from 表名 where 条件
热心网友
时间:2023-11-04 17:41
写SQL的代码:select
count(*)
from
表
它返回的是查询出的结果
<例:return
***;>
Java代码:
写SQL的那个类名
替用名<例:b>=new
写SQL的那个类名();
int
a=Integer.parseInt(b.执行count查询的方法<注:这里是那个方法返回的结果>);
//这里的Integer.parseInt()是把字符串转换为整型
热心网友
时间:2023-11-04 17:41
数据库语言(sql)先读出,再用java嵌套sql给出。
热心网友
时间:2023-11-04 17:42
Statement
getMetaData();