摘要:
作为一名新时代程序员,不会Git怎么行?这两天看了廖雪峰老师的Git教程,收获颇丰,已经能够能掌握基本的Git使用方法了。 我是用的是windows开发平台(习惯了,我不觉得用windows就低人一等=.=),首先要安装Git for windows 用windows还是老老实实的用英文命名吧,最好 阅读全文
摘要:
1 ;with cte as 2 ( 3 select * from Associator where No = 'mc1007' 4 union all 5 select air.* from Associator as air inner join cte on air.ParentNo = cte.No 6 ) 7 select * from cte; 阅读全文