sql语句选择*和name速度差多少?
sql语句选择*和name速度差多少?
select * from table
和
select name form table
两条sql速度差多少?是不是第二条会比第一条快很多倍?
------解决方案--------------------看你表中有多少字段。
如果你的表中有上百个字段。 则显然 select * 要比 select name 慢。
------解决方案--------------------select * from table比
select name from table
慢
具体慢多少explain select * from table
explain select name from table
------解决方案--------------------如果那么没有索引的话 则效率是一样的
因为记录是按照行存储的
------解决方案--------------------* 不忽略null值,他能不慢吗~~~