这是我的SQL查询:
select * from user_tb;
如何将其转换为Moodle查询格式。
请帮帮我。
答案 0 :(得分:2)
$users = $DB->get_records_sql('SELECT * FROM {user}');
或
$users = $DB->get_records('user');
请参阅此处的数据库文档http://docs.moodle.org/dev/Data_manipulation_API#Getting_an_hashed_array_of_records