我需要了解如何将用户名从另一个表中提取到VIEW
。我有3个表,User,Lead和Lead_detail。在users表中有一个ID字段,存储在Lead表的Created_By字段中。在Lead表中,我有一个ID字段存储在Lead_detail Lead_ID字段中。
我已经为Lead_detail表创建了一个VIEW
,它提取了我需要的所有信息,但我发现我没有VIEW
中的用户名,所以我需要{{1我的视图是添加每个潜在客户的用户名,但我在使用该语句时遇到问题。
在更改ALTER
之前,我想尝试VIEW
语句,看看我是否收到任何数据,
SELECT
但是这没用。什么是正确的陈述,以便我可以将用户名称拉入Lead VIEW?
答案 0 :(得分:0)
我认为您错过了与Users表的连接:
<?php
session_start();
if ($_SESSION['nID'] == false) {
header("Location: login.php");
die();
} elseif ($_SESSION['nID'] == true) {
header("Location: Home.php");
die();
} else {
echo"cant connect";
}
?>
<html>
<head>
<link href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<ul class="nav nav-pills">
<li role="presentation" class="active"><a href="welcome.php">Home</a></li>
<li role="presentation"><a href="info.php">Information</a></li>
<li><a href="logout.php">Logout</a>
</ul>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
</body>
</html>