数据库原理及应用实验一(创建数据库和表),一、 实验目的 熟悉SQL Server Management Studio;掌握通过SQL Server Management Studio管理数据库的方法;掌握数据库及其物理文件的结构关系;掌握通过SQL Server Management Studio管理数据表的方法。 掌握查询分析器的使用;掌握通过SQL语句创建表的方法;掌握通过SQL语句创建表的方法;掌握通过SQL语句修改表结构的方法;掌握通过SQL语句添加、修改、删除表数据的方法。
Linux下均在控制台下操作。导入数据库:前提:数据库和数据表要存在(已经被创建)
(1)将数据表 test_user.sql 导入到test 数据库的test_user 表中[roottest ~]# mysql -uroot -p test < /www/web/test/test_user.sql
(2) 将数据库 test.sql 导入到 test 数据库test 中[roottest ~]# mysql -uroot -p test use tes