Looking at the Stars.(简称叫我853!

MySQL笔记

登陆:

mysql -hlocalhost -uroot -p

选择数据库:

USE [数据库]

显示某数据表的数量:

select count(*) from [数据表];

查找某数据表的指定数据数量:

select count(*) from [数据表] where id=1;

显示某数据表的第几条记录(从0计算):

select * from [数据表] limit [第几条开始显示],[显示多少条];

来自网友的0条留言