Reputation: 21
Please help me to insert simple sql query into table for example:
insert into table0 ( sql_text) values ( 'select count(*) from table1;');
I am receiving error .
Thanks,
Upvotes: 1
Views: 231
Reputation: 43
Please try the following:
INSERT INTO tableName (columnName) values ('Select count(*) from tableName; ');
Upvotes: 1