You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
示例表
[1] CREATE DATABASE classdb;
[2] SHOW DATABASES;
[3] USE classdb;
[4] CREATE TABLE
[5] DROP DATABASE classdb;
remove meta_db database_classdb -> “”;
remove all table in classdb
[6] DROP TABLE table_name ;
1.remove meta_db table_classdb_classtab -> “###...”
2.delete data_classdb_classtab
[7] INSERT INTO
[8]SELECT ;
SELECT * from classtab WHERE Name = 'Tom'
[9]SELECT * from classdb WHERE score > '100' and score < '120';
[10] UPDATE classdb
[11]DELETE
[12] DELETE RANGE
[13] LIKE SELECT
[14] ORDER BY
[15] AVG
[16] SUM
Beta Was this translation helpful? Give feedback.
All reactions