if there are consecutive natural joins in sql what is the result code example
Example: natural join query in mysql
SELECT id,aval1,cval1
FROM table111
NATURAL JOIN table113;
SELECT id,aval1,cval1
FROM table111
NATURAL JOIN table113;