SESSION_USER() adalah sinonim untuk USER().
CREATE TABLE t (c VARCHAR(288) DEFAULT (SESSION_USER()));
Like USER(), this function can be used for the default value of a VARCHAR or TEXT column, as shown in the following CREATE TABLE statement:
CREATE TABLE t (c VARCHAR(288) DEFAULT (SESSION_USER()));