Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ssl/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在Joomla上输入事件时出现SQL问题_Sql - Fatal编程技术网

在Joomla上输入事件时出现SQL问题

在Joomla上输入事件时出现SQL问题,sql,Sql,我在Joomla上运行游戏联盟,我通过JoomSport建立了联盟,每次输入事件字段时,我都会出现以下错误: 0-SQL=选择s.s_id作为id,选择CONCAT(t.name',s.s_名称)作为名称,选择t.t_类型,选择来自jos_bl_锦标赛的t.t_single作为t,选择jos_bl_季节作为s,其中s.s_id=5,s.t_id=t.id 我不知道怎么解决,有人能帮我吗 谢谢。在黑暗中完成拍摄。删除from语句中的as: jos\u bl\u锦标赛作为t,to->jos\u bl

我在Joomla上运行游戏联盟,我通过JoomSport建立了联盟,每次输入事件字段时,我都会出现以下错误:

0-SQL=选择s.s_id作为id,选择CONCAT(t.name',s.s_名称)作为名称,选择t.t_类型,选择来自jos_bl_锦标赛的t.t_single作为t,选择jos_bl_季节作为s,其中s.s_id=5,s.t_id=t.id

我不知道怎么解决,有人能帮我吗


谢谢。

在黑暗中完成拍摄。删除from语句中的as:

jos\u bl\u锦标赛作为t,
to->
jos\u bl\u锦标赛t,

SELECT 
   s.s_id as id, 
   CONCAT(t.name,' ',s.s_name) as name,
   t.t_type,
   t.t_single 
FROM 
  jos_bl_tournament  t, 
  jos_bl_seasons  s 
WHERE 
  s.s_id = 5 AND 
  s.t_id = t.id

@尼克斯这就是我所能得到的。还有更多吗?@尼克斯不,这真的让我恼火。在花费了120英镑之后,我对本应建立并正常运行的数据库有太多问题。他们自己的支持论坛没有人支持。我在下面尝试了一下,但我需要你发布锦标赛和赛季的专栏。@不知道我可以在哪里找到专栏,因为你可能已经知道我真的不知道我在干什么