I'm not aware of an automagic way to do what you want, but EE is quite flexible -- there is always a way. In this case, the best way will probably be found on devot-ee. The second best way may be found in the examples below. ;)
{exp:channel:entries}
<h2>This is an entry called "{title}".</h2>
<p>All of its categories are:
{categories backspace="3"}
<a href="{path="site_index"}">{category_name}</a>,
{/categories}
</p>
<p>The category in the URL is:
{exp:channel:category_heading channel="{channel_short_name}"}
<a href="{site_url}/category/{category_url_title}">{category_name}</a>
{/exp:channel:category_heading}
</p>
<p>Excluding the category in the URL, its categories are:
{exp:query sql="SELECT cc.cat_url_title curl, cc.cat_name cname FROM exp_category_posts cp, exp_categories cc WHERE cc.cat_url_title != '{segment_2}' AND cp.entry_id = '{entry_id}' AND cp.cat_id = cc.cat_id" backspace="3"}
<a href="{site_url}/category/{curl}">{cname}</a>,
{/exp:query}
</p>
{/exp:channel:entries}
Please note, these examples assume a little bit about the structure of your site. Adjustment will probably be necessary.