摘要:
1.打印 print--打印,不换行,根据要求加上换行符 println--打印一次就换行 printf--打印,继承C语音的格式,可以进行格式化输出 换行符 '\r'是回车,'\n'是换行,‘\t'是制表符 使用方法:1.System.out.println("谢谢支持\n"); 2.System 阅读全文
摘要:
1.select select * from user; 2.Update update user set name='zhangsan' where id='1'; 更新名字为zhangsan update user set name='lisi',age='12' where id='2';更新 阅读全文