JAVA试题(100道) —————————————————————————————————————— 题目1: 下面不属于基本类型的是:c (选择1项) A) boolean B) long C) String D) byte 题目2:d 如下程序中: (1)public class CharToInt (2){ (3) public static void main(String[] args) (4) { (5) int a,b=10; (6) char c='语'; (7) a=b+c
本文实例讲述了MySQL自定义函数用法。分享给大家供大家参考,具体如下:
先来一个简单的,创建一个函数将’2009-06-23 00:00:00’这样格式的datetime时间转化为’2009年6月23日0时0分0秒’这样的格式:
DELIMITER $$
DROP FUNCTION IF EXISTS `sp_test`.`getdate`$$
CREATE FUNCTION `sp_test`.`getdate`(gdate datetime) RETURNS varchar(255)
B
代码如下:#include #include int main(){ /*getdate()函数的用法*/ struct date d; getdate(&d); //获取DOS日期 printf(“the current year is:%d\n”,d.da_year);//cprintf和printf用法是不同的 printf(“the current day is:%d\n”,d.da_day); printf(“the current month i