摘要:
进入数据库: use databasename; 实例:use test_db 查看数据库中的表: show tables; 创建表: create table if not exists tablename( column_list )engine=table_type; tablename是表的 阅读全文
摘要:
window系统cmd启动: net start mysql mysql -u 账号 -p 输入密码回车进入 退出:exit; quit;两个命令 查看所有数据库: show databases; 创建数据库: create database if not exists 数据库名字; if not 阅读全文
摘要:
Build after other projects are built:在其他项目构建完成后再进行构建。 这里又分三种情况: ①Trigger only if build is stable:其他项目构建成功 ②Trigger even if the build is unstable:其他项目不 阅读全文