Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Oh yes, it is.
Elaborate multi-screen SQL has become a rare thing in my dev life though. I am doing the CPU-intensive stuff on the application server now. -
killames5733yUse proddb
Go
Declare @fuckmyboss(tablename nvarchar (max))
Insert into @fuckmyboss(tablename)
Select table_name from sys.tables
While (select count(*) from @fuckmyboss) >0
Begin
Declare @tab nvarchar(max)
select top 1 @tab=tablename from @fuckmyboss
Declare @fuckshit nvarchar(max) = strconcat(“drop table “, @tab)
Exec(@fuckshit)
Delete from @fuckmyboss where tablename=@tab
Print “fuck him”
End
Print “I quit!!!”
Print “I hate you all !”
Go
Related Rants
writing sql at 3AM is so much fun.
random
sql
smh