Jan 11, 2005 #1 4954 MIS May 5, 2003 5 HK how to do this in asp sql ? sele * from tablex where field1 contains field2 ? eg. field1 = 'abc xyz 123' field2 = 'yz' thanks.
how to do this in asp sql ? sele * from tablex where field1 contains field2 ? eg. field1 = 'abc xyz 123' field2 = 'yz' thanks.
Jan 12, 2005 #2 ChrisHirst IS-IT--Management Nov 23, 2001 8,049 GB SELECT * FROM table WHERE INSTR(column1, column2); should work (depending on the SQL version Chris. Indifference will be the downfall of mankind, but who cares? http://www.candsdesign.co.uk A website that proves the cobblers kids adage. http://www.cram-system.com Nightclub counting systems So long, and thanks for all the fish. Upvote 0 Downvote
SELECT * FROM table WHERE INSTR(column1, column2); should work (depending on the SQL version Chris. Indifference will be the downfall of mankind, but who cares? http://www.candsdesign.co.uk A website that proves the cobblers kids adage. http://www.cram-system.com Nightclub counting systems So long, and thanks for all the fish.
Jan 12, 2005 Thread starter #3 4954 MIS May 5, 2003 5 HK how if ADO connection to dbf file ? seem not working any other simply solutions.. Upvote 0 Downvote