I am receiving the following error:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'outer join on PERSON.idnum=ADVISOR.student full outer join DIGITAL on ADVISOR.st' at line 1
When trying to run the following code:
select fname, lname, rname, advisor_name, smaddr FROM PERSON FULL OUTER JOIN on PERSON.idnum=ADVISOR.student FULL OUTER JOIN DIGITAL on ADVISOR.student=DIGITAL.idnum ;
I tired using union but not sure if I am doing it right because I am still getting a syntax error.
select fname, lname , rname , advisor_name , smaddr from PERSON full outer join on PERSON.idnum=ADVISOR.student left outer join DIGITAL on ADVISOR.student=DIGITAL.idnum 
 union 
select fname, lname , rname , advisor_name , smaddr from PERSON full outer join on PERSON.idnum=ADVISOR.student right outer join DIGITAL on ADVISOR.student=DIGITAL.idnum;
This table needs to output fname, rname, lname, advisor name, and twitter account from the following tables and if a person does not have an advisor paired with them or something then it will return null:
PERSON
+-------+---------+----------+-------------------------+---------+----------+
| idnum | lname   | fname    | rname                   | private | linkblue |
+-------+---------+----------+-------------------------+---------+----------+
| 22222 | Clemens | Timothy  | clemens.timothy@uky.edu |       0 | tgcl258  |
| 40256 | South   | William  | south.william@uky.edu   |       1 | weso123  |
| 55555 | North   | Dan      | north.dan@uky.edu       |       0 | ddno453  |
| 56732 | Cox     | Courtney | NULL                    |       1 | cco546   |
| 68123 | Smith   | Terry    | smith.terry@uky.edu     |       1 | tlsm321  |
+-------+---------+----------+-------------------------+---------+----------+
ADVISOR
+---------+---------+---------------+---------------+-------+-------+
| student | advisor | student_name  | advisor_name  | sdate | edate |
+---------+---------+---------------+---------------+-------+-------+
|   40256 |   40256 | William South | Abby Tanner   | NULL  | NULL  |
|   68123 |   68123 | Terry Smith   | Nicole Taylor | NULL  | NULL  |
+---------+---------+---------------+---------------+-------+-------+
DIGITAL
+-------+----------+------------------------------+
| idnum | smtype   | smaddr                       |
+-------+----------+------------------------------+
| 22222 | facebook | facebook.com/clemons.timothy |
| 40256 | facebook | facebook.com/south.william   |
| 68123 | facebook | facebook.com/smith.terry     |
| 22222 | twitter  | twitter.com/clemons.timothy  |
| 40256 | twitter  | twitter.com/south.william    |
| 68123 | twitter  | twitter.com/smith.terry      |
+-------+----------+------------------------------+
 
     
     
    