日期:2014-05-16 浏览次数:20721 次
C:\Documents and Settings\Administrator>mysql -uroot -pROOT Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 47 Server version: 5.1.48-community MySQL Community Server (GPL) Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> create database test;
mysql> show databases;
mysql> drop database test;
mysql> use test;
mysql> source 文件地址
mysqldump -uroot -proot test product_category > c:\product_category.sql
mysql> show tables;
ALTER TABLE sub_company MODIFY COLUMN latitude DECIMAL(10,6);