我使用MySQL语句INSERT INTO将数据插入到我的表中。我有几个独特的字段,如用户名和电子邮件。// Add the data to the table 'users'(username, password, email, dob,VALUES('$username', '$cleansedPassword', '$email', '$dob'
我想要编写一条MYSQL语句,该语句回显每个以字母B开头的条目。Function.php$query = mysql_query("SELECT author FROM lyrics WHERE author [startswith letter B]") or die(mysql_error());
while ($row = mysql_fetch_assoc($query)) { ?p