mysql入门记录
Posted 和尚爱吃肉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql入门记录相关的知识,希望对你有一定的参考价值。
mysql -h localhost(or ID) -u root -p
show databases;
create database <数据库名>;
drop database <数据库名>;
use pythontest;
describe tb01;
create table tb01(id int,name char(32));
insert into tb01 values(1,"test");
select * from tb01;
select name, id from tb01 where id =1;
http://www.cnblogs.com/linjiqin/archive/2013/03/01/2939384.html
以上是关于mysql入门记录的主要内容,如果未能解决你的问题,请参考以下文章