摘要:
Android使用adb模拟器时出现"unable to establish connection to adb"、"ADB server didn't ACK"等错误时,一般是adb服务没有启用,或者adb绑定端口被占用引起的。常用解决办法如下:1.在命令提示符窗口输入"adb kill-serv... 阅读全文
摘要:
set identity_insert 表名 ON --允许对自增列Id插入指定数据insert into table_name(Id,Name) values(1,'test')set identity_insert 表名 OFF --关闭对自增列Id插入指定数据注意:1.set identity... 阅读全文
摘要:
1.数据环境准备 参考Oracle递归查询文章。2.查询某个节点下的所有子节点 with cte(id,name,parent_id) as ( select id,name,parent_id from SC_DISTRICT where name='巴中市' union all ... 阅读全文