优秀外套

文章
3
资源
0
加入时间
3年0月9天

java与mysql笔试题_JAVA和数据库笔试题

java部分:选择:1.下面的执行结果:Java代码public class Test3 {public static void main(String args[]){int a=222;a=a+2;System.out.println(a);System.out.println(a+(--a)+(a++));System.out.println(a);}}答案是:224 670 224publ...

sqlserver中查询存储过程中的字符串

select namefrom sysobjects o, syscomments swhere o.id = s.idand text like '%querytext%'and o.xtype = 'P' ORDER BY name1 nolock rowlock2 https://www.cnblogs.com/greyzeng/p/5524614.html Kettl...