vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   need a sql quary (https://vborg.vbsupport.ru/showthread.php?t=207611)

mpoorrajab 03-07-2009 12:30 PM

need a sql quary
 
hi everyone ...

i need a mysql quary for my vb db that put the first post date of users instead of their registration date ...

some of our users have incorrect registration date because of i convert my forum from phpbb to vb and those users dont have reg date ...

thank you ...

Lynne 03-07-2009 04:55 PM

You used impex to import your users? You might want to ask over on vb.com how to fix this since I know I've seen this brought up before over there.

mpoorrajab 03-08-2009 11:38 AM

i asked them and they told me you cannot do anything ...

i think that if i put the first post date of each user instead of reg date , i can solve this problem so i want a query to do that ...

mpoorrajab 03-10-2009 01:42 PM

no answer yet?

Lynne 03-10-2009 02:07 PM

So, in the user table you want to enter the firstpostdate into the joindate field if the joindate field is empty (is it actually empty or does it have some other value in it)? It's not a simple 'copy' query because firstpostdate isn't another one of the fields in that table.

mpoorrajab 03-11-2009 11:45 AM

you mean is there is no way to do that?

there is some data in those registration date fields but they are wrong for example Jan-01-1970

Lynne 03-11-2009 01:56 PM

I'm sure there is a way to do it, but it's not a simple query which is probably why no one has come and posted it. And since, the field isn't empty, that makes it a bit more difficult because you can't just say WHERE joindate=''. You need to find something unique about the users that need their joindates changed. What is in the joindate field exactly - is it exactly the same for all the users you want to change? (It's gonna be in unixtime.) Also, what is a user has never posted - what do you put in that field then?

Marco van Herwaarden 03-11-2009 03:07 PM

Try the following query (create backup first!!!):
[sql]UPDATE user AS u
SET joindate = (SELECT MIN(p.dateline) FROM post AS p WHERE p.userid = u.userid)
WHERE u.joindate = 0;[/sql]

mpoorrajab 03-12-2009 11:28 AM

Quote:

Originally Posted by Marco van Herwaarden (Post 1765781)
Try the following query (create backup first!!!):
[sql]UPDATE user AS u
SET joindate = (SELECT MIN(p.dateline) FROM post AS p WHERE p.userid = u.userid)
WHERE u.joindate = 0;[/sql]

can you please give this query to process on one user after i see changes do that for all users ...

Marco van Herwaarden 03-12-2009 11:31 AM

Change:

[sql]WHERE u.joindate = 0;[/sql]

to:

[sql]WHERE u.joindate = 0 AND userid = <<IdOfUser>>[/sql]


Replace <<IdOfUser>> with the userid.


All times are GMT. The time now is 08:16 PM.

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.01052 seconds
  • Memory Usage 1,726KB
  • 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
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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