3
Reply

What is the difference between a local and a global variable?

Ankur Jain

Ankur Jain

Aug 18, 2014
1.2k
0

    local variable has scope within same session while globle variable has scope in all sessions

    Mukesh Kumar
    September 03, 2017
    0

    difference between local table and a global table!!!!!! then What is the difference between a local and a global variable?

    pramod nawale
    January 09, 2015
    0

    A Local temporary table exists only for the duration of a connection or, if defined inside a compound statement, for the duration of the compound statement. A Global temporary table remains in the database permanently, but the rows exist only within a given connection. When connection are closed, the data in the global temporary table disappears. However, the table definition remains with the database for access when database is opened next time.

    Ankur Jain
    August 18, 2014
    0