How do I run SQL queries on a WordPress web page? [on hold]
Question
Whenever I Google this it brings up pages related to Database management. However, I want to run this in the actual webpage.
For example:
You go to a webpage where you can practice SQL:
I.e. you have a window where you type:
Create table T1 (
Id not null,
Name varchar(60)
);
Insert in T1 (Id, Name)
values (1, 'john');
Select * from T1;
This would give you a single row, two column table
Where the I’d is 1 and the name is John
Id | Name
1 | john
Thanks!
0
mysql, plugins, sql
4 years
2019-11-28T16:36:35-05:00
2019-11-28T16:36:35-05:00 0 Answers
79 views
0
Leave an answer