MySQL + SQL · Lesson 97

PL/SQL vs MySQL Stored Programs

दो Procedural Languages

PL/SQL Oracle की procedural language है। MySQL का अपना stored-program syntax है। दोनों मिलते-जुलते काम अलग keywords से करते हैं।

तुलना

PointPL/SQL (Oracle)MySQL
BlockBEGIN ... END;BEGIN ... END (DELIMITER के साथ)
OutputDBMS_OUTPUT.PUT_LINESELECT
VariablesDECLARE v NUMBER;DECLARE v INT;

सारांश

  • PL/SQL Oracle-specific है; MySQL का अपना procedural syntax।
  • Concepts (procedures, functions, loops) समान; keywords अलग।
🔗

Share this topic with a friend

यह topic किसी दोस्त को भेजें

Found it useful? Send it to a classmate learning the same thing.

अच्छा लगा? जो दोस्त यही सीख रहा है, उसे भेज दीजिए।