文章表下的当前标题值,例如:
我必须将第一个字符更改为大写字母,将以下字符更改为小写字母。
交易后他们应该如下:
我应该使用哪个SQL命令来使用MySQL查询更改标题的所有数据并将其更改为永久?
答案 0 :(得分:2)
显然,这有效:
CONCAT(UPPER(SUBSTRING(title, 1, 1)),LOWER(SUBSTRING(title, 2)))
答案 1 :(得分:0)
在PHP中使用void ViewerWidget::mousePressEvent(QMouseEvent *event)
{
if (event->buttons() & Qt::LeftButton) {
m_rotationTrackball.push(pixelPosToViewPos(event->pos()), m_scaleTrackball.rotation().conjugate());
}
update();
}
void ViewerWidget::mouseReleaseEvent(QMouseEvent *event)
{
if (event->buttons() & Qt::LeftButton) {
m_rotationTrackball.release(pixelPosToViewPos(event->pos()), m_scaleTrackball.rotation().conjugate());
}
update();
}
void ViewerWidget::mouseMoveEvent(QMouseEvent *event)
{
if (event->buttons() & Qt::LeftButton)
{
m_rotationTrackball.move(pixelPosToViewPos(event->pos()), m_scaleTrackball.rotation().conjugate());
}
else
{
m_rotationTrackball.release(pixelPosToViewPos(event->pos()), m_scaleTrackball.rotation().conjugate());
}
update();
}
函数。
首先在变量中检索它,然后将其传递给ucfirst();
函数并回显答案。
ucfirst();