"metaData":"{\"mysql\":[\"Create table If Not Exists Transactions (account_id int, day date, type ENUM('Deposit', 'Withdraw'), amount int)\"],\"mssql\":[\"Create table Transactions (account_id int, day date, type varchar(8) NOT NULL CHECK (type IN('Deposit', 'Withdraw')), amount int)\"],\"oraclesql\":[\"Create table Transactions (account_id int, day date, type varchar(8) NOT NULL CHECK (type IN('Deposit', 'Withdraw')), amount int)\",\"ALTER SESSION SET nls_date_format='YYYY-MM-DD'\"],\"database\":true,\"name\":\"account_balance\",\"pythondata\":[\"Transactions = pd.DataFrame([], columns=['account_id', 'day', 'type', 'amount']).astype({'account_id':'Int64', 'day':'datetime64[ns]', 'type':'object', 'amount':'Int64'})\"],\"postgresql\":[\"Create table If Not Exists Transactions (account_id int, day date, type VARCHAR(30) CHECK (type IN ('Deposit', 'Withdraw')), amount int)\\n\"],\"database_schema\":{\"Transactions\":{\"account_id\":\"INT\",\"day\":\"DATE\",\"type\":\"ENUM('Deposit', 'Withdraw')\",\"amount\":\"INT\"}}}",