zoukankan
html css js c++ java
在workbench中导入.sql文件!(导入数据库文件)
第一步
,登陆mysql workbench
第二步
,打开自己的数据 ,此处默认(root)
打开数据库后页面 :
第三步
,新建一个schema ,随便给个名字,这里起名为test :
可以看到test 内的table ,views,routines,等选项都是没有任何内容的。
第四步
,在file 下打开你需要导入的.sql 文件。
第五步
,(关键步骤)在打开的文件当中,除去注释外的第一行,添加一行代码,use schema名 。
第六步
,点击打开文件上的小闪电标志,执行代码。
第七步
,查看数据库是否已经导入(新建的test 库)
OK 完成入库。
查看全文
相关阅读:
POJ 1269 Intersecting Lines --计算几何
URAL 2014 Zhenya moves from parents --线段树
HDU 4122 Alice's mooncake shop --RMQ
HDU 4121 Xiangqi --模拟
HDU 4045 Machine scheduling --第二类Strling数
HDU 4041 Eliminate Witches! --模拟
HDU 5105 Math Problem --数学,求导
2014-2015 Codeforces Trainings Season 2 Episode 7 G Gophers --线段树
HDU 4419 Colourful Rectangle --离散化+线段树扫描线
HDU 5102 The K-th Distance
原文地址:https://www.cnblogs.com/jpfss/p/10892639.html
最新文章
记一次枯燥的2003提权
CTF中常见的 PHP 弱类型漏洞总结
初探APT 攻击
JSF 2 button and commandButton example
How to include JavaScript file in JSF
How to include cascading style sheets (CSS) in JSF
JSF 2 graphicImage example
JSF 2 outputText example
JSF 2 multiple select dropdown box example
JSF 2 dropdown box example
热门文章
JSF 2 multiple select listbox example
JSF 2 listbox example
JSF 2 radio buttons example
HDU 4082 Hou Yi's secret --枚举
POJ 1556 The Doors --几何,最短路
POJ 1066 Treasure Hunt --几何,线段相交
POJ 1410 Intersection --几何,线段相交
HDU 4063 Aircraft --几何,最短路
POJ 2653 Pick-up sticks --队列,几何
POJ 3304 Segments --枚举,几何
Copyright © 2011-2022 走看看