vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   replace into .. values ... where??? (https://vborg.vbsupport.ru/showthread.php?t=92341)

sabret00the 07-16-2005 08:49 PM

replace into .. values ... where???
 
apparently i can't use replace into blah blah with where, what's the alternative?

Marco van Herwaarden 07-16-2005 09:05 PM

Could you elaborate.

sabret00the 07-16-2005 09:10 PM

i'm trying to do this [sql] $DB_site->query("
REPLACE INTO prs_users(favourites)
VALUES(if(favourites='', $p, concat_ws(' ', favourites, $p)))
WHERE userid = $bbuserinfo[userid]
");[/sql]

but it gives me this error
Code:

mysql error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE userid = 10' at line 3

mysql error number: 1064

not sure if i'm doing a good job of explaining this so let me know if not and i'll try harder.

sabret00the 07-18-2005 03:05 PM

*bump*

Andreas 07-18-2005 03:12 PM

WHERE with REPLACE doesn't work.
REPLACE = INSERT, except that it does delete existing records with the same key first.
So you can insert without having to check if the record does already exist.

If you want to update a record (which you know does exist) you should use UPDATE.

sabret00the 07-18-2005 03:19 PM

problem is that i don't know if it exists or not that's why i made it a replace so that if it didn't exist it would it would create the record, can update do that?

i.e.
[sql]

$DB_site->query("
UPDATE prs_users(favourites)
VALUES(if(favourites='', $p, concat_ws(' ', favourites, $p)))
WHERE userid = $bbuserinfo[userid]
");[/sql]

Andreas 07-18-2005 03:25 PM

No, UPDATE can just update existing records.

What's the Schema of prs_users?

sabret00the 07-18-2005 03:51 PM

Code:

| prs_user                                                                        |
=================================================
| recordid | userid | subscriptions | favourites | responseupdate |
---------------------------------------------------------------

basically as soon a user either tries to subscribe, mark something as a favourite are ask for a response update it creates a record for the user.

more info on the schema

[sql]CREATE TABLE `prs_users` (
`recordid` int(10) unsigned NOT NULL auto_increment,
`userid` int(10) NOT NULL default '0',
`subscriptions` mediumtext collate latin1_general_ci NOT NULL,
`favourites` mediumtext collate latin1_general_ci NOT NULL,
`responseupdate` enum('1','0') collate latin1_general_ci NOT NULL default '1',
PRIMARY KEY (`recordid`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;[/sql]

sabret00the 07-20-2005 12:14 PM

*bump*


All times are GMT. The time now is 01:10 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00960 seconds
  • Memory Usage 1,723KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete