Lodius2000 Posted October 8, 2008 Share Posted October 8, 2008 what is the structure for using multiple delimiters in where clauses in mysql i am thinking SELECT url FROM table WHERE article_id = 2 AND WHERE unique_id = 38 or do i leave out the second where SELECT url FROM table WHERE article_id = 2 AND unique_id = 38 thanks Link to comment https://forums.phpfreaks.com/topic/127496-solved-multiple-delimiters-to-a-where-clause/ Share on other sites More sharing options...
redarrow Posted October 8, 2008 Share Posted October 8, 2008 IN THIS EXAMPLE article_id = 2 CAN BE 0 TO 1 MILLION WITH ALL THEM ARTCLES WITH THE unique_id OF 38 SELECT url FROM table WHERE article_id = '2' AND unique_id = '38' Link to comment https://forums.phpfreaks.com/topic/127496-solved-multiple-delimiters-to-a-where-clause/#findComment-659637 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.