xx 1 سال پیش
والد
کامیت
75171c7f8a
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/db/sqler.cpp

+ 2 - 2
src/db/sqler.cpp

@@ -188,13 +188,13 @@ ylib::select& ylib::select::orderby(const std::string& expression)
 	m_orderby = expression;
 	return *this;
 }
-select& ylib::select::groupby(const std::string& expression)
+ylib::select& ylib::select::groupby(const std::string& expression)
 {
 	// TODO: 在此处插入 return 语句
 	m_groupby = expression;
 	return *this;
 }
-select& ylib::select::having(const std::string& expression)
+ylib::select& ylib::select::having(const std::string& expression)
 {
 	// TODO: 在此处插入 return 语句
 	m_having = expression;