MySQL Forums
Forum List  »  Newbie

Re: Mariadb reading code that is inside comments
Posted by: Peter Brawley
Date: January 23, 2021 12:49PM

drop table if exists codetips;
create table codetips(
  id int unsigned primary key auto_increment, 
  name varchar(64), 
  code text
);
insert into codetips set name="sample",code="show create table codetips";
select * from codetips;
+----+--------+----------------------------+
| id | name   | code                       |
+----+--------+----------------------------+
|  1 | sample | show create table codetips |
+----+--------+----------------------------+

In your setup, what's the "it" that's executing your code?

Options: ReplyQuote


Subject
Written By
Posted
Re: Mariadb reading code that is inside comments
January 23, 2021 12:49PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.