- 10
Drag and drop from the options below to delete the table ''students'' from the database.
How do i do this???
17 Réponses
+ 4
Have you trouble using drag and drop or do you want to know the syntax.
DROP TABLE Students
https://www.tutorialspoint.com/sql/sql-drop-table.htm
+ 2
SELECT DISTINCT name
FROM students
ORDER BY name;
+ 1
DROP TABLE Students
+ 1
drop table students
+ 1
par.removeChild(node);
+ 1
Drag and drop from the options below to list the table names.
___________TABLES;
+ 1
var par = document.getElementById("par");
var node = document.getElementById("node");
par.removeChild(node);
+ 1
SELECT DISTINCT name
FROM students
ORDER BY name;
0
Alter, drop, column.
0
DROP TABLE Students
0
Thank you Sneeze
0
drop table students
0
show table
0
Drag and drop from the options below to list the table names.
SHOW TABLES;
0
DROP TABLE Students
- 2
Answer is WHERE, 23.
- 3
Drag and drop from the options below to remove the node element from the page (par is node's parent).
var par = document.getElementById("par");
var node = document.getElementById("node");
par.removeChild(node);