单选题执行语句“month(’1982-11-02’)”结果为()A1982B11C02D1982-11-02
单选题
执行语句“month(’1982-11-02’)”结果为()
A
1982
B
11
C
02
D
1982-11-02
参考解析
解析:
暂无解析
相关考题:
设有说明struct DATE { int year;int month; int day;};请写出一条定义语句,该语句定义 d 为上述结构体 类型 变量,并同时为其成员 year 、 month 、 day 依次赋初值 2006 、 10 、 1 : 【 19 】 。
设有说明struct DATE{int year;int month; int day;};请写出一条定义语句,该语句定义d为上述结构体变量,并同时为其成员year、month、day 依次赋初值2006、10、1:_________;
在下面程序的横线处填上______,使程序执行后的输出结果为1/2005。 include using nam 在下面程序的横线处填上______,使程序执行后的输出结果为1/2005。include<iostream.h>using namespace std;class Date{Public:Date(int m=1,int y=0): month(m),year(y){}void Print(){cout<<month<<"/"<<year<<end1;}______operator+(const Dated1,const Dated2);private:int month, year;};Date operator+(const Dated1,const Dated2){int year,month;year=d1.year+d2.year;month=d1.month+d2.month;year+=(month-1)/12;month=(month-1)%12+1;return Date(month,year);}void main(){Date d1(3,2004),d2,d3(10);d2=d3+d1;d2.Print();}
(8)设当前日期为2007年12月27日,星期四,则执行下列语句后的输出结果是。 Print Day(Now) Print Month(Now) Print Year(Now) Print Weekday(Now)
设当前日期为2008年4月28日,星期一,则执行下面语句后的输出结果为______。Print Day(Now)Print Month(Now)Print Year(Now)Print Weekday(Now)
评估以下语句:TRUNCATE TABLEemployee;以下有关此TRUNCATETABLE语句的哪个说法是的()A、可以通过执行“DROPTABLEemployee”语句来得到同样的结果B、可以执行此语句来保留INVENTORY表的结构C、可以通过执行ROLLBACK语句来撤消该语句D、可以通过执行“DELETEEMPLOYEE”语句来得到同样的结果
单选题评估以下语句:TRUNCATE TABLEemployee;以下有关此TRUNCATETABLE语句的哪个说法是的()A可以通过执行“DROPTABLEemployee”语句来得到同样的结果B可以执行此语句来保留INVENTORY表的结构C可以通过执行ROLLBACK语句来撤消该语句D可以通过执行“DELETEEMPLOYEE”语句来得到同样的结果
问答题根据下面所给的AAA数据库,写出下列每条查询语句的执行结果,或者写出下列每条语句或程序段的功能。 假设存在名为AAA的数据库,包括Students(学号char(8),姓名varchar(8),年龄int,专业varchar(20),入学日期DateTime)和Score(学号char(8),课程名varchar(10),成绩numeric(5,2))两张表。 select month(入学日期) as 入学月份,count(*) as 人数 from students group by month(入学日期)
填空题DBMS执行CREATE VIEW语句的结果只是把(),并不执行其中的SQL语句。