我想從SQL中提取數據到excel文件,下面是表中的示例數據。 數據僅存在於一個表中,我無法控制數據插入的方式,因此無法在更多的表之間使用連接。SQL Server:在一個表中加入
+------+--------------------------------+--------------------------------------+------------------------------------+
| ID | URL | TITLE | LINKS_TO |
+------+--------------------------------+--------------------------------------+------------------------------------+
| 1 | http://www.loc.gov/ | Library | http://www.loc.gov/library |
| 2 | http://www.loc.gov/library | Catalog | NULL |
| 3 | http://www.nasa.gov/ | NASA | http://www.nasa.gov/images |
| 4 | http://www.nasa.gov/images | National Institutes of Health (NIH) | NULL |
我需要提取ORIGINAL_URL和TITLE的是outlink(LINKS_TO)作爲輸出我把下面。我嘗試加入桌子本身,但對我來說太複雜了。這是需要的輸出。
+------------------------------+---------------------------------------+
| ORIGIN_URL | TITLE |
+------------------------------+---------------------------------------+
| http://www.loc.gov/ | Catalog |
| http://www.nasa.gov/ | National Institutes of Health (NIH) |
請幫忙嗎?
學校工作?向我們展示您當前的嘗試! – jarlh 2015-02-09 13:28:44