I have INVOICE TABLE I want to insert value by not specifying column names using SQL Server, I have tried this but it is not working..
INVOICE
TABLE
SQL Server
yes you can directly insert values into table as follows:
insert into `schema`.`tablename` values(val1,val2,val3);