I need to select all column but without 2 column as shown in below
CREATE TABLE product(id int, name varchar(50), inf varchar(50));
CREATE TABLE users(id int,prdct_id int,user1 float,user2 float, ...... , usern float);
select p.id,p.name,p.inf,u.* ???("without id and prdct_id column)???
from product p join
users u
on p.id = u.prdct_id
I wish,u guys understand to me, how can I select all users column without id and prdct_id columns. I don't want to write each of users name to select.