统计表t1中数据的总条数,用到的关键词的正确格式是()
A. count()
B. count(*)
C. count(
D. )
E. cuont(*)
查询数据库t1中表t2的前100条数据,代码为( )
A. select * from t1.t2 limit 100
B. select * from t1.t2 limit 100;
C. select * form t1.t2 limit 100;
D. select * from t2.t1limit 100;
查询表t2中只包含uid和keyword字段的前10条数据,代码为()
A. select uid,keyword from t2 limit 10;
B. select * from t2 limit 10;
C. select from uid,keyword t2 limit 10;
D. select uid,keyword from t2;
group by 语句通常会和聚合函数一起使用,其语意为按照一个或者多个列对结果进行分组,然后使用聚合函数对每个组执行聚合运算。
A. 对
B. 错