Skip to content

Commit 5419f92

Browse files
author
Sabbir Ahmed
authored
Merge pull request #758 from mhasanmeet/develop
Update Correction of SQL command
2 parents 58c3c81 + 015284a commit 5419f92

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

data/mysql.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@
9696
},
9797
{
9898
"definition": "এই নামে কোন টেবিল আছে কিনা চেক করে নতুন টেবিল তৈরি করা",
99-
"code": "CREATE TABLE tableName IF NOT EXISTS;"
99+
"code": "CREATE TABLE IF NOT EXISTS tableName;"
100100
},
101101
{
102102
"definition": "কোন টেবিল ডিলেট করতে",
103-
"code": "DROP TABLE tableName IF EXIST;"
103+
"code": "DROP TABLE IF EXIST tableName;"
104104
},
105105
{
106106
"definition": "ডাটাবেজ ডিলেট করতে",
107-
"code": "DROP DATABASE dbname IF EXIST;"
107+
"code": "DROP DATABASE IF EXIST dbname;"
108108
}
109109
]
110110
},

0 commit comments

Comments
 (0)