Yes they are the same, it's basically an alias for the table name.
wc.*, or just *, selects all fields from a given table. So this query:
PHP Code:
SELECT * FROM wp_posts
Would retrieve all records and all fields in the wp_posts table. Generally it's best to define exactly what fields you need for optimization reasons like so:
PHP Code:
SELECT ID, post_title FROM wp_posts