Final answer:
The correct syntax for performing an inner join is 'select ID, Name, Salary from one inner join two on ID=IDNO;'. It combines rows from two or more tables based on a related column.
Step-by-step explanation:
The correct syntax for performing an inner join is option c: select ID, Name, Salary from one inner join two on ID=IDNO;
An inner join combines rows from two or more tables based on a related column between them.
The ON keyword is used to specify the join condition, in this case, ID=IDNO. This query will return the ID, Name, and Salary columns from the tables 'one' and 'two' where the ID column value matches the IDNO column value.