All major database vendors have their own proprietary extensions to standard SQL. Oracle's SQL is different to Microsoft's T-SQL. Other databases such as MySQL and PostgreSQL are different again.
One example of the differences between the various dialects is the way you select the first n rows. In SQL Server you can use SELECT TOP 3. In Oracle you can use WHERE rownum <= 3. MySQL and PostgreSQL both support LIMIT 3. The SQL standard is FETCH FIRST 3 ROWS ONLY.
PL/SQL is Oracle's language for writing procedures. It is an extension of SQL, adding many features that are typical in procedural programming languages, such as variables, loops and arrays.