摘要:
StringBuffer测试代码示例 public class TestStringBuffer { public static void main(String[] args) { String str1 = "I"; String str2 = "love"; String str3 = str 阅读全文
摘要:
1、使用CMD命令行操作Mysql数据库 1、连接数据库 mysql -u数据库名 -p密码 --例如 mysql -uroot -p 2、查看所有数据库 show databases; 3、查看某个数据库下面所有的表 show tables; 4、查看某个表的具体信息 desc 表名; --例如 阅读全文