摘要:
之前一直觉得toolchain是个高大上的东西,现摘录 uClibc中的FAQ以助理解。 A toolchain consists of GNU binutils, the gcc compiler, and uClibc, all built to produce binaries for you 阅读全文
摘要:
To cross-compile is to build on one platform a binary that will run on another platform. When speaking of cross-compilation, it is important to distin 阅读全文
摘要:
使用的SQL大概是这样的: select * from A left join B on A.id=B.id and A.id>10; --错误的使用 我们期望的结果集应该是 A中的id>10,但是实际上A.id>10 这个限制条件并没有起作用。 应该改成如下的这种形式: select * from 阅读全文
摘要:
创建表的同时插入数据:create table zhang3 as select * from zhang1;create table zhang3(id,name) as select * from zhang1;将查询数据插入到某个表中:insert into zhang3 select * f 阅读全文