HOME > ASP > ASP Forum > อยากจะตรวจสอบ 2 คอลั่มอะครับ ตัวอย่าง ป้องกัน barcode ซ้ำ สมมุติถ้าผมต้องการตรวจสอบเพิ่มอีกเป็น barcode อีกอันอย่างเช่น barcode2 ต้องเพิ่มอย่างไรครับ
ตัวอย่าง
<%
Set Conn=Server.Createobject("ADODB.Connection")
Conn.Open "Msproduct","sa",""
sql ="Select * From product where barcode='"&Request.Form("barcode")&"'" ' ป้องกัน barcode ซ้ำ
Set RS =Server.CreateObject("ADODB.Recordset")
RS.open Sql,Conn,1,3
if NOT(RS.EOF) then
response.write("รหัส barcode นี้มีอยู่แล้ว")
else
ตรงส่วนนี้
sql ="Select * From product where barcode='"&Request.Form("barcode")&"'" ' ป้องกัน barcode ซ้ำ
สมมุติถ้าผมต้องการตรวจสอบเพิ่มอีกเป็น barcode อีกอันอย่างเช่น barcode2 ต้องเพิ่มอย่างไรครับ