摘要: 最近刚好又聊到了组合索引,由于担心自己记忆的不准确就实践了一番,结果发现和百度的好像不太一样,对此有疑惑的我,于是写下了这篇文章,希望对大家有用。 第一种情况:组合索引(主键) 1、建表 -- CREATE TABLE CREATE TABLE A ( AID NUMBER NOT NULL, AC 阅读全文
posted @ 2018-11-08 10:43 ゞSmile丶 阅读(16918) 评论(0) 推荐(0) 编辑
摘要: //将filepath写入outpath File file=new File(filepath); InputStream inputstream=new FileInputStream(file); FileOutputStream outstream = new FileOutputStream(outpath); int iBytesRead = 0; byte[] buffer = n... 阅读全文
posted @ 2016-06-02 11:49 ゞSmile丶 阅读(97) 评论(0) 推荐(0) 编辑