多项选择题
mysql数据库中一张user表中,其中包含字段A,B,C,字段类型如下:A:int,B:int,C:int根据字段A,B,C按照ABC顺序建立复合索引idx_A_B_C,以下查询语句中使用到索引idx_A_B_C的语句有哪些()。
A. select *from user where A=1 and B=1 B. select *from user where 1=1 and A=1 and B=1 C. select *from user where B=1 and C=1 D. select *from user where A=1 and C=1
单项选择题 C++中构造函数和析构函数可以抛出异常吗()。
单项选择题 在x86系统下,sizeof如下结构体的值是多少()。
多项选择题 开发C代码时,经常见到如下类型的结构体定义: 最后一行char data[0];的作用是()。