Collections:
PHP MSSQL - Deleting Existing Rows in a Table
PHP MSSQL - How To Delete Existing Rows in a Table?
✍: Guest
If you want to remove a row from a table, you can use the DELETE statement with a WHERE clause to identify the row. The following sample script deletes one row:
<?php
$con = mssql_connect('LOCALHOST','sa','FYIcenter');
mssql_select_db('FyiCenterData', $con);
$sql = "DELETE FROM fyi_links WHERE id = 1102";
$res = mssql_query($sql,$con);
if (!$res) {
print("SQL statement failed with error:\n");
print(" ".mssql_get_last_message()."\n");
} else {
$number_of_rows = mssql_rows_affected($con);
print("$number_of_rows rows deleted.\n");
}
mssql_close($con);
?>
If you run this script, you will get something like this:
1 rows deleted.
If you run it again, no rows will be deleted. And you will get something like this:
0 rows deleted.
⇒ PHP MSSQL - Including Text Values in SQL Statements
⇐ PHP MSSQL - Updating Existing Rows in a Table
⇑ SQL Server FAQs - PHP MSSQL Functions - Managing Tables and Data Rows
2024-02-18, 2034🔥, 0💬
Popular Posts:
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...