如果要清空表中的所有记录,可以使用下面的两种方法:
- DELETE FROM table1
- TRUNCATE TABLE table1
update
UPDATE Person SET Address = 'Zhongshan 23', City = 'Nanjing'
WHERE LastName = 'Wilson'
测试题
11.runroot
12.ActionConstroller.php
,XcController.php
13.?_of=xml
_d=1
_of=json 输出为json格式
_of=xml 输出为xml格式
_of=html 输出为html格式
14.TaskExport.php
15.getLastInsertId()
, getFoundRows()
, getExist()
getLastInsertId() 查询上一次insert所返回的自增id
getFoundRows() 获取上次查询的总记录数 注意:查询过后记录数会清零,请自行保存记录数
getExist() 查询符合条件的记录是否存在
16.中国婚博会
17.G
19.$db->table('表名')->where(array('age>' => 9, 'age<=' => 18))
,$db->order(create_time, false)->get()
$db->table('表名')->where(array('age>' => 9, 'age<=' => 18))->order(create_time, false)->get();
$db->table('表名')->where(array('age>' => 9, 'age<=' => 18))->order(create_time desc)->get();
20.ln -s /home/work/iHapN/app/service ./service
21.app 存放逻辑层代码的目录
,conf 配置文件目录
,HapN WEB 框架核心目录,里边是框架代码
,log 日志文件目录
,page 页面代码目录,包括ActionController代码和模板代码
,plugin 扩展目录
tmp 临时文件目录
runroot 框架运行的入口文件目录