MySql - 删除表“无论如何”如果存在则创建表“无论如何”?
我只想删除表“whatever”(如果存在),然后在可能的情况下在单个查询中重新创建表“whatever”。
DROP TABLE IF EXISTS `whatever` ELSE
CREATE TABLE `whatever`
有什么想法吗?
I simply want to drop the table 'whatever' if it exist and then recreate table 'whatever' in a single query if possible.
DROP TABLE IF EXISTS `whatever` ELSE
CREATE TABLE `whatever`
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 TRUNCATE 清空表并重置基数,而不是删除表并重新创建它。
Use TRUNCATE to empty the table and reset cardinality instead of deleting the table and recreating it.