Why isn't there a syntax similar to the following?
#myTable (tr,td) {}
Quite simply because nobody bothered to propose a useful syntax... until as recently (relative to the time you posted this anyway) as 2008, as an :any() pseudo-class. This was discussed in greater depth a little later.
In any case, the first implementation has surfaced from Mozilla, albeit as late as 2010 as :-moz-any():
#myTable :-moz-any(tr, td) {}
The following year, it would be suggested that WebKit follow suit, with :-webkit-any():
#myTable :-webkit-any(tr, td) {}
But if one were to use them together right now, then due to selector parsing rules one would have to duplicate the rules, making one's code even longer:
#myTable :-moz-any(tr, td) {}
#myTable :-webkit-any(tr, td) {}
Making them pretty useless in that regard. I'd limit their use to vendor-specific code, rather than make use of them in general authoring code.
The new Selectors level 4 working draft has a proposal for a :matches() pseudo-class, which is obviously based on the original :any() proposal but may see certain enhancements as the draft is revised:
#myTable :matches(tr, td) {}
Of course, since it's a new draft, don't expect browser support until much later (maybe a year or so?).